fstring multiline python code example
Example: multiline f string python
date = "01/31/1956" # Guido Van Rossums birthday
time = "9:30 AM"
tags = ["high value", "high cost"]
text = "Hello"
# if you want to have it formatted standard but want the more appealing look
return (
f'{date} - {time}\n'
f'Tags: {tags}\n'
f'Text: {text}'
)
# else if you want to have it formatted exactly as input
return f'''{date} - {time},
Tags: {tags},
Text: {text}
'''