Skip to content

Instantly share code, notes, and snippets.

@tmikeschu
Created May 24, 2019 01:31
Show Gist options
  • Save tmikeschu/a537cb82a763e2cdef72211feadac550 to your computer and use it in GitHub Desktop.
Save tmikeschu/a537cb82a763e2cdef72211feadac550 to your computer and use it in GitHub Desktop.

4.0.3 Do Now

  1. Log in to Repl
  2. Write down what the output of the function print_6_stars is:
def print_6_stars(): 
    my_string = ''
    for i in range(0, 6): 
        my_string += ' *'
    print(my_string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment