bagaimana melakukan pemformatan dalam python dengan fungsi format
age = 36
txt = "his age is {}"
print(txt.format(age))
Programmer of empires
age = 36
txt = "his age is {}"
print(txt.format(age))