+ 1
How do you convert an interger into a string.
Text = 10 Print("Text = " + ?????) I want to print 'Text = 10'
5 Respuestas
+ 2
text =str(10)
print("text", text)
+ 4
str(10)
+ 1
result = "Text={}".format (str (Text))
print (result)
0
use this code
print('Text = 10')
0
if you want something else tell me