Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Chapter 10: Functions

Defining

def greet(name):
    return "Hello "+name

Scope

Local: inside function

Global: outside function