Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

printing in python

#you first need to have an event to fire a piece of code.
#with that i use the if statement

can_run = True

if can_run:
    print("ok i,m printing")
    #you can print varibles(strings) too

the_4_words = "ok i,m printing varibles"

if can_run:
    print(the_4_words)
Source by www.datacamp.com #
 
PREVIOUS NEXT
Tagged: #printing #python
ADD COMMENT
Topic
Name
7+6 =