

# https://www.globalsino.com/ICs/page4853.html
# Count the number of lines in a txt or csv file

import pandas as pd

MyFileName = r'C:\GlobalSino\ICs\ExampleFiledUsedINtestingPython\CityDateB.csv'
df = pd.read_csv(MyFileName)


print(df.shape)


