#Unlike other programming languages, Python has no command for declaring a variable. #A variable is created the moment you first assign a value to it. x = 5 #int y = "John" #string z=[1,2,4,5] #list