SyntaxFix
Write A Post
Hire A Developer
Questions
in python 3.6 and newer, you can format it just like this:
new_string = f'{s} {i}' print(new_string)
or just:
print(f'{s} {i}')