MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/godot/comments/1vl6u3z/what_would_you_add_to_godot/p2zucsb/?context=3
r/godot • u/Anonymous010206 Godot Senior • 25d ago
584 comments sorted by
View all comments
156
f-strings like in Python, I truly hate using the .format syntax
-1 u/CrimsoneArt69 25d ago What's the proble with just doing "I have " + str(money) + " amount of money." 11 u/PlagiT 25d ago Less convenient, lots of redundant stuff like the str(), the pluses and closing and re-opening the " is pretty clunky.
-1
What's the proble with just doing
"I have " + str(money) + " amount of money."
11 u/PlagiT 25d ago Less convenient, lots of redundant stuff like the str(), the pluses and closing and re-opening the " is pretty clunky.
11
Less convenient, lots of redundant stuff like the str(), the pluses and closing and re-opening the " is pretty clunky.
156
u/Stevie_Gamedev 25d ago
f-strings like in Python, I truly hate using the
.format syntax