You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
316 B
Python
15 lines
316 B
Python
# -*- coding: utf-8 -*-
|
|
# @Time : 2022/9/21 15:12
|
|
# @Author : ZAOXG
|
|
# @File : example.py
|
|
|
|
import re
|
|
import pandas as pd
|
|
from data_process_tool import read_data
|
|
|
|
|
|
def format_conversion(file_name: str):
|
|
file_df = read_data(file_name)
|
|
# file_df['wss'].str
|
|
re.sub(r'<[A-Za-z]+>.*?</[A-Za-z]+>', '', )
|