F this!
Today's example/challenge is f strings. They are a bit more complex but can look more professional when writing Python. Copy and paste this into PyCharm and post a screenshot of the results.
first_name = input("Enter your first name: ")
last_name = input("Enter your last name: ")
full_name = f"{first_name} {last_name}"
print(f"Your full name is {full_name} .")
2
1 comment
Enrique Ontiveros
3
F this!
powered by
Python Playground ๐Ÿ
skool.com/python-playground-3614
A beginner-friendly Python community with live coaching, fun challenges, and a video game vibe to learn Python!