Basic Statements Output print , , ..., Note: all Python types have printable representations Simple Assignment = myVar = oldValue * foo + skip Simultaneous Assignment , , ... = , , ... a,b = b,a Assigning Input input() myVar = input("Enter a number: ") x,y = input("Enter the coordinates (x,y): ")