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}")
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}")