1### print text
2print ("Hello")
3
4### print variable
5test_variable = 'Hello World'
6print (test_variable)
7
8### combine variable and words
9Name_variable = 'Thomas'
10print (f"Hello, {Name_variable}")
11
12### print more words
13print ("hello", "how are you")
14
15