print(f"{{ok}}")
username = "test"
print(f"user is {username} - with braces > {{{username}}}")
prop = 1/3
print(f"{prop} - {prop:.3f}")
print(f"{2 * 2}")
print(f"user has a {'short' if len(username) < 5 else 'long'} username")
def connect_status(username):
    return "connected"
log = f"user: {username} is {connect_status(username)}"
print(log)
print(
    f"1"
    f"2"
    f"3"
)
print(f'''je fais ce'que'je "veux" ok''')
print(f'this is a not a phase \nmom')
print(fr'this is a not a phase \n mom')
print(f"{username=}")
face = "hmmm 🤔"
print(f"{face}")
print(f"{face!a}")  
print(f"{face!r}")