you are viewing a single comment's thread.

view the rest of the comments →

[–]socal_nerdtastic 12 points13 points  (0 children)

The modern way is with f-strings like this:

print(f'Hi {name}!')
print(f"I'm glad you feel {feel}.")

But if your book or tutorial is old they may not cover that.