msg = "Hello people"
print(msg)
Hello people
print(1+1)
2
msg = "yo mom"   
print(msg)   
yo mom
a=1
b=30
print(b-a)
29

Python sample code (loop)

This is an example of using a loop in python, printing each step until the break. Then adding a message at the last iteration.

a=1
while (a < 10):
    print('hey guys', a)
    if(a==9):
        print('BYE GUYS! :)')
    a=a+1
  
hey guys 1
hey guys 2
hey guys 3
hey guys 4
hey guys 5
hey guys 6
hey guys 7
hey guys 8
hey guys 9
BYE GUYS! :)
print("Hello Docker!")
langs = ["Python", "Javascript", "Java", "Bash"]
langs[2]
Hello Docker!
'Java'