print(); print(3+5*2–5+ 100); print(‘3+5*2–5+100 ‘)
print(‘3+5*2–5+100=’, 3 + 5*2–5+100) #parameters = 2
print(‘3+5*2–5+100=’,3+5*2–5+100, “Hello”,5*2)
# Comments — this for humans not for computer
# indentation is mandatory in Python
#Process finished with exit code 0 = Exit code 0 means no error as expected
#variable
value1 = 50 #defining a varaible called value1
# lets tale value1 and…