SyntaxFix
Write A Post
Hire A Developer
Questions
In Python >= 3.6, the new f-string is an efficient way to concatenate a string.
>>> name = 'some_name' >>> number = 123 >>> >>> f'Name is {name} and the number is {number}.' 'Name is some_name and the number is 123.'