《笨办法学Python3》练习十八:名字,变量,代码,函数

练习代码

# this one is like your scripts with argv
def print_two(*args):
    arg1, arg2 = args
    print(f"arg1: {arg1}, arg2: {arg2}")

# ok, that *args is actually pointless, we can just do this
def print_two_again(arg1, arg2):
    print(f"arg1: {arg1}, arg2: {arg2}")

# this just takes one argument
def print_one(arg1):
    print(f"arg1: {arg1}")

def print_none():
    print("I got nothin'.")

print_two("Zed", "Shaw")
print_two_again("Zed", "Shaw")
print_one("First!")
print_none()

Study Drills

Create a function checklist for later exercises. Write these checks on an index card and keep it by you while you complete the rest of these exercises or until you feel you do not need the index card anymore:

  1. Did you start your function definition with def?

  2. Does your function name have only characters and _ (underscore) characters?

  3. Did you put an open parenthesis right after the function name?

  4. Did you put your arguments after the parenthesis separated by commas?

  5. Did you make each argument unique (meaning no duplicated names)?

  6. Did you put a close parenthesis and a colon after the arguments?

  7. Did you indent all lines of code you want in the function four spaces? No more, no less.

  8. Did you “end” your function by going back to writing with no indent (dedenting, we call it)?
    When you run (“use” or “call”) a function, check these things:

  9. Did you call/use/run this function by typing its name?

  10. Did you put the ( character after the name to run it?

  11. Did you put the values you want into the parentheses separated by commas?

  12. Did you end the function call with a ) character?

Use these two checklists on the remaining lessons until you do not need them anymore.
Finally, repeat this a few times to yourself: To “run,” “call,” or “use” a function each means the same thing.

你可能感兴趣的:(《笨办法学Python3》练习十八:名字,变量,代码,函数)