These exercises do not need to be completed in order, but they are generally ordered in increasing difficulty. The solutions provided are not the only possible solution. Your's might look different, and that is okay!
-
Using the
print()
function, print at least four lines of your favorite poem or song lyrics. Do this on multiple lines. Exercise link. Solution link. -
Given three strings stored as variables, print the strings separated by a space. Then print the strings separated by commas. Exercise link. Solution link.
-
Using the
time
module'ssleep()
function, print the string'Waiting five seconds ...'
, then wait five seconds and print'done waiting.
' on the same line of output. Exercise link. Solution link.