Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
19 lines (14 loc) · 594 Bytes

File metadata and controls

19 lines (14 loc) · 594 Bytes
Copy raw file
Download raw file
Outline
Edit and raw actions

Sequencing

By calling one function after another, in sequence, you can have the program do different things in sequence.

doSomething()
doAnotherThing()

The pass statement

In Python, there is the concept of an empty statement, which is the keyword pass in the context where a statement is expected. The pass statement serves as a convenient placeholder for a statement or statements that the programmer will fill in later to complete some functionality.

def myUnfinished():
    # Fill in code later to complete this function!
    pass
Morty Proxy This is a proxified and sanitized view of the page, visit original site.