home
clear breadcrumbs
search
login
 
type
Type: Integer, Float, String i = int(3) print(i) 3 one = 1 two = 2 three = one + two print(three) 3 myfloat = 7.0 print(myfloat) 7.0 myfloat = float(7) print(myfloat) 7.0 hello = "hello" world = "world" helloworld = hello + " " + world print(helloworld) hello world