0
Guys why my code doesnt change ?
I try made a string,i did A = str (45) print (A) And dont change nothing ! Plz help me
3 Respuestas
+ 1
try to do:
print(repr(42))
print(repr(str(42)))
to see the difference ;)
+ 1
K
+ 1
A is a string.
print(type(A))
When you say print("hello")
It will give hello and not "hello".