f String

PHOTO EMBED

Mon Sep 16 2024 13:05:08 GMT+0000 (Coordinated Universal Time)

Saved by @jerseyitguy #python

# Create variables
username = "JohnDoe"
user_age = 25
balance = 150.75
is_member = False

# Manipulate and print variables
new_balance = balance + 100
print (f"Username: {username}, Age: {user_age}")
print (f"Hi {username} you are {user_age} and your balance is {new_balance}")
content_copyCOPY