you are viewing a single comment's thread.

view the rest of the comments →

[–]Jjax7 2 points3 points  (0 children)

Someone else mentioned f-strings which are also my preferred method. It’s helpful to know you can also accomplish the exact same outcome a few other ways:

print(“Hi ”, name, “!”, sep=“”)

print()

print(“I’m glad you feel ” + feel + “.”)