Python 3.6+ has the new 'f' string prefix to use in place of the .format function for string, it is neat and useful.
Prior to Python 3.6:
Foo = "bar";
print("Foo value is {}".format(Foo));Python 3.6+:
Foo = "bar";
print(f"Foo value is {Foo}");Try it on:
https://repl.it/languages/python3
No comments:
Post a Comment