how to use print

Back to Home

just print normally

                    
print("Hello, World!")
                    
                

you have to make those "" other wise it will treat the string as a number

how to make python print a variable

                    
variable = "printme"
print(variable)