Python: String Variables and Print Statements

Post Reply
User avatar
Jason
Site Admin
Posts: 767
Joined: Sun Dec 21, 2025 8:56 pm

Code: Select all


person_name = str("Homer Simpson")

person_career_name = str("energy plant worker")

# String variables don't have to be declared, and they are in these examples.

print(f"{person_name} has a career as a {person_career_name}.")

# The above statement prints out the sentence "Homer Simpson has a career as a energy plant worker." (no parenthesis)

 

POSTREACT(ions) SUMMARY

Post Reply