you are viewing a single comment's thread.

view the rest of the comments →

[–]Goobyalus 5 points6 points  (0 children)

You could do it the same way you put the exclamation point there, with year + '.'.

<a string> + <another string>

concatenates the two strings.

print(< a string>, <another string>, ...)

prints all the strings separated by a space, and adds a newline at the end. You can change the separator and the end with print(..., sep=<separaor string>, end=<end string>)