Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 389 Bytes

File metadata and controls

18 lines (12 loc) · 389 Bytes

Do Now 3.02

In your console

Type the following code:

    def my_function():
        print("THIS IS MY FUNCTION!")

In your notebook

Respond to the following:

  1. What does my_function do?
  2. How would you call the function? Practice calling my_function and checking that it does what you expect it to.
  3. How would you add arguments to my_function?