#I do know that the f tag allows me to put varribels in a message# box = input("Enter some text: ") length = len(box) + 2 print('+' + '-' * (length) + '+') print('|' + ' ' + box + ' ' + '|') print('+' + '-' * (length) + '+')