Show Menu
Cheatography

Python comprehensive Cheat Sheet (DRAFT) by

Comprehensive python cheat sheet

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Math Operators

**
2 ** 3 = 8

Function

say_hi­('J­ohn', 'Hello')
Hello John
>>> def say_hi­(name, greeting):
... print(­f"{g­ree­ting} {name}­")