|
|
|
|
|
by macNchz
435 days ago
|
|
Well now we'll have four different ways to format strings, since removing old ones is something that doesn't actually happen: "foo %s" % "bar"
"foo {}".format("bar")
bar = "bar"; f"foo {bar}"
bar = "bar"; t"foo {bar}" # has extra functionality!
|
|
It does suck for beginners who end up having to know about all variations until their usage drops off.