string_to_print = "Hello World"
print(string_to_print)
print("the message you want to print")
#def test
print("Hello, world!") #for text
print(test) #for variable
print("Hello,", test) # for text + variable
print("text goes here")
print("You can print whatever you like and it'll be shown in the output")
#variables
name= 'Name' #Customizable
exclamationMark = '!' #Customizable
#prints(customizable):
print('Hello ', name + '!' + True, False)
print('GoodBye ' + name, exclamationMark)
#Print like printing something in real life!
print("Hello there!")
print('Make sure to upvote!')
#Both " and ' Work!
print ("hola")
type print("")
print("put text here")