mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-03-01 03:18:42 +00:00
Edit script.py capitalization and grammar
This commit is contained in:
parent
331017470f
commit
e8cf0597d1
@ -3,8 +3,8 @@ import pandas as pd
|
|||||||
def makeExcel():
|
def makeExcel():
|
||||||
df = pd.read_csv('Path to your CSV file.csv')
|
df = pd.read_csv('Path to your CSV file.csv')
|
||||||
# index and header can be set True or False accoring to needs
|
# index and header can be set True or False accoring to needs
|
||||||
df.to_excel('Path where save as Excel file.xlsx', index=False, header=True)
|
df.to_excel('Path to save as Excel file.xlsx', index=False, header=True)
|
||||||
print('Converted Successfuly')
|
print('Converted successfuly')
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
makeExcel()
|
makeExcel()
|
Loading…
x
Reference in New Issue
Block a user