I'm trying to run a python program with pycharm and I have this line of code:
for i, o in enumerate(outputs):
f.write(f'#Output{i + 1}\t{o}\n')
The IDE marks the f inside the write function stating this error: "Python version 3 does not support a 'F' prefix".
Can anyone help?
I also have a problem that for some reason numpy package install does not succeed. Maybe that has any connection?