Programming Principles in Python (CSCI 503)

Programming Principles in Python (CSCI 503)

Dictionaries & Sets

Dr. David Koop

(some slides adapted from Dr. Reva Freedman)

D. Koop, CSCI 503/490, Fall 2021

Functions

? def (): # do stuff return res

? Use return to return a value

? Can return more than one value using commas

? def (): # do stuff return res1, res2

? Use simultaneous assignment when calling:

- a, b = do_something(1,2,5)

? If there is no return value, the function returns None (a special value)

D. Koop, CSCI 503/490, Fall 2021

2

Scope

? The scope of a variable refers to where in a program it can be referenced ? Python has three scopes:

- global: de ned outside a function - local: in a function, only valid in the function - nonlocal: can be used with nested functions ? Python allows variables in different scopes to have the same name

D. Koop, CSCI 503/490, Fall 2021

3

if

Local Scope

? def f(): # no arguments x = 2 print("x in function:", x)

x = 1 f() print("x in main:", x)

? Output:

- x in function: 2 x in main: 1

? Here, the x in f is in the local scope

D. Koop, CSCI 503/490, Fall 2021

4

Global Keyword for Global Scope

? def f(): # no arguments global x x = 2 print("x in function:", x)

x = 1 f() print("x in main:", x)

? Output:

- x in function: 2 x in main: 2

? Here, the x in f is in the global scope because of the global declaration

D. Koop, CSCI 503/490, Fall 2021

5

................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download