Text and operators
What is “hello” minus “world”? No idea, same here! Silly question really!
Some operators do not make sense when it comes to text. There are only two you can really use. Try the code below –
a = "hello" b = "bert" print a + b print a * 3 print (a + b) * 3
print out “goodbyefred” 5 times to move on!
Output: (clear)











