# print print("hello") print("hello" + " world," + " nhow are you!") # variables #int variables x = 5 y = 7 burrito = 123 #floating point variables a = 3.4 b = 7.8973 taco = 8.274 #String variables name = "Phillip" coding_language = "python" data_of_today = "9-16-23, September 16th, 2023" #NOTE: "9" is NOT equal to 9. The computer views them differntly #FUNCTIONS def say_hello_to_phillip(): print("Hello, Phillip!") say_hello_to_phillip() # when you build a function #you MUST call the function (by writing its name) #in order for it to run def say_hello_to_name(name): print("Hello, " + name + "!") say_hello_to_name("Ryden")