f string on multipline string code example
Example 1: python fstring
#python3.6 is required
age = 12
name = "Simon"
print(f"Hi! My name is {name} and I am {age} years old")
Example 2: f string on multipline string
return f"""{self.date} - {self.time},
Tags:' {self.tags},
Text: {self.text}"""
Example 3: f struings pytohn
print(f' words {variable} more words, another variable {goes here}')