Video
Innhold
1 2 3 4 5 6 7 8 9 10 11 12 | print ( "I'm Alice" ) #I'm Alice print ( "en\nto tre" ) # en # to tre print ( "Jeg sier \"Hei\" " ) # Jeg sier "Hei" print ( "en \t to \t tre" ) # en to tre |
Konvertere til streng
1 2 3 4 5 6 7 8 9 10 11 | a = 7.77 print ( type (a)) # <class 'float'> b = str (a) print ( type (b)) # <class 'str'> print (a) print (b) |