#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)