name = 'Stuart'
age = 51
# f before the string = Format (This is the recomended way)
print(f'Hi {name},you are {age} Years old!')
#Below is Python 2 Alternative, can also put order within {} ie 0,1
#print('Hi {},You are {} Years old!'.format(name, age'))
#