how to print someting in python
### print text
print ("Hello")
### print variable
test_variable = 'Hello World'
print (test_variable)
### combine variable and words
Name_variable = 'Thomas'
print (f"Hello, {Name_variable}")
### print more words
print ("hello", "how are you")