Python - String Operator +
================
fruit = ‘banana’
bakedGood = ‘ nut bread’
print(fruit + bakedGood)
print(‘7’+’2’)