You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for you script. Very useful. But be aware that the using print(f'{variable}') only works for python versions >= 3.6. To be compatible with previous python3 versions you should use print('{} {}'.format(variable1, variable2))
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for you script. Very useful. But be aware that the using print(f'{variable}') only works for python versions >= 3.6. To be compatible with previous python3 versions you should use print('{} {}'.format(variable1, variable2))
The text was updated successfully, but these errors were encountered: