Since Python 3.6 there is neat way to put variables into string, called f-strings:
name = "joern" age = "37" print(f"My name is {name} and I'm {age}")
The Adventures of Dash Daring in Code & Music & Business
Since Python 3.6 there is neat way to put variables into string, called f-strings:
name = "joern" age = "37" print(f"My name is {name} and I'm {age}")