not clear what you are having problem with
>>> user = 'marios' >>> user + '@' 'marios@'or better - using f-strings (string-formatting)
>>> email = f'{user}@python-forum.io' >>> email '[email protected]'please post minimal reproducible example. If you get any traceback - post it in full, in error tags
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs