Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python print variable

#How to print a variable the code below sets a variable to Hello, World!
variable = "Hello, World!"
#Use the print function to write out anything (the name variable after the print function is the name of the variable you want to print)
print(variable)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Python #print #variable
ADD COMMENT
Topic
Name
6+4 =