I want to append the Timestamp of current time for my timezone, but don't know where to find the correct value of my timezone. Apparently, it's Islamabad/Karachi, but no success.
Here is my small code chunk
import pandas as pd
...
#df -> a dataframe
df.to_csv('C:/path/to/file-'+str(pd.Timestamp.now())+'.tsv', mode='a', index=None, sep='\t', header=False)
Desired output file name is
file-10;17;52--29-06-2020
for file-hour;minutes;sec--day-month-year
I know :
is not allowed in names