Check your trash can, if that doesnt work then I would say its lost.
I can help you out ! What do you need to know bud ?
This is for Python
name = 'Joe'
print(f'My name is {name}')
This is called string formatting. Using f before the text. This is another way
name = 'Joe'
print('My name is', Joe)
But I found that string formatting is cleaner and much more useful