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} .")