Skip to content
Snippets Groups Projects
Commit 88ce3932 authored by JupyterHub User's avatar JupyterHub User
Browse files

fixed errors while specifing path with f-strings

parent 7e46f090
No related branches found
No related tags found
No related merge requests found
...@@ -213,9 +213,9 @@ def ctlm(field_name ='M00',time='MED',start=-50*10**(-3),stop=50*10**(-3),step=1 ...@@ -213,9 +213,9 @@ def ctlm(field_name ='M00',time='MED',start=-50*10**(-3),stop=50*10**(-3),step=1
date = str(datetime.today().replace(microsecond=0)) date = str(datetime.today().replace(microsecond=0))
file_name = f"{field_name}_CTLM_{j+1}.txt" file_name = f"{field_name}_CTLM_{j+1}.txt"
#path = f"\\FILESERVER\public\Datentransfer\Asonitis, Alexandros\{file_name}" path = f"\\FILESERVER\public\Datentransfer\Asonitis, Alexandros\_{file_name}"
#export DataFrame to text file (keep header row and index column) #export DataFrame to text file (keep header row and index column)
with open(file_n, 'a') as f: with open(path, 'a') as f:
f.write('title\n') f.write('title\n')
df_string = df.to_string() df_string = df.to_string()
f.write(df_string) f.write(df_string)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment