Interact with Data

PHOTO EMBED

Mon Sep 16 2024 13:00:54 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("Username:", username)
print("Age:", user_age)
print("New Balance:", new_balance)
print("Is Member:", is_member)
content_copyCOPY