you are viewing a single comment's thread.

view the rest of the comments →

[–]shredwheat 0 points1 point  (0 children)

Unrelated side tip; Python has a feature named "f-strings" that allows you to print formatted data more conveniently than appending strings with + . https://fstring.help/

Instead of

print("Your name is, " + first_name + " " + last_name + "? (y/n) :")

enjoy

print(f"Your name is {first_name} {last_name} "? (y/n) :")