6 ms·
"r#{5}" or in actual use something like "I have #{me.num_of_children}\n" much better then Auto conversion In python "I have " + str(me.num_of_sons)
by rat 15y ago
"r#{5}"
or in actual use something like
"I have #{me.num_of_children}\n"
much better then Auto conversion
In python
"I have " + str(me.num_of_sons) + "and " + str(me.num_of_daughters) +"\n"
does get annoying