Basics Flashcards
Range
Immutable sequence
range(stop)
range(start, stop[, step])
start=0
step=1
<class ‘range’>
if step=0: ValueError
only integers
no concatenation and repetition
Slice
start=0
stop=len(x)
step=1
if step<0:
start=-1
stop=-len(x)-1
if step=0: ValueError
list[slice(start, stop, step)]
.indices(length)
Extended slice
slice with a step
Expression
produce a value
list comprehension
conditional (ternary) expression
yield x
Statement
do something
return, pass, assert, raise
List comprehension
[expr for item in iterable if cond]
multiple ifs: if cond1 if cond2
Iterable Unpacking
a, b, c = 1, 2, 3_
— throw-away
tuple = tuple
Dictionary comprehension
{key: value for (key, value) in iterable}<key if else>: <value if else>
PEP 274
Unpacking inside tuple, list, set, dict
*range(n), [*range(n)] {*range(n)} {**{'a': 1}}
PEP 448
Throwaway variable
_
Pass by Assignment
pass by reference
pass by object reference
pass by sharing
no primitive types
nothing is copied
Docstrings
”"”triple double quotes”””
.__doc__
string literal
first statement in a module, function, class, method
PEP 257
F-Strings
formatted string literals
{f_expr[=][!<conversion>][:<format_spec>]}
conversion flags
self-documenting expression
» f’{expr=}’
expr=value
format specifiers
PEP 498
Modulo Operator
<format_string> % <values>
conversion specifier:
%[<flags>][<width>][.<precision>]<type>
tuple, dictionary
logging
dictionary interpolation
str.format()
<template>.format(<args>, <kwargs>)
replacement fields
indices, keyword arguments
{[<name>][!<conversion>][:<format_spec>]}
localization
dictionary interpolation
Special Method
method that is called implicitly by Python to execute a certain operation on a type
__method__
Namespace
mapping from names to objects
no relation between names in different namespaces
global, local – dictionary
globals()
locals()
Scope
textual region of a Python program where a namespace is directly accessible
values have no scope
Del
unassignment statement
del ref_1[, ref_2…]
Reference:
- identifier
- index
- slice
- key
- attribute or method
from left to right
can’t delete built-in names
Nested Unpacking
a, (b, c) = 1, [2, 3]
Extended Unpacking
catch-all unpacking
a, b, *c = 1, 2, 3, 4
starred expression
only one
returns list
can be empty
must be in a list or tuple
PEP 3132
Slice Assignment
s[i:j:k] = iterable
replace
delete
s[i:j] = []
insert
s[i:i] = t
s[len(s):] = t append
s[:0] = t prepend
if step not 1, must be same length
Else Loop
executes if loop completes without break
for ... in ...: ... else: ...
while ...: ... else: ...
Format Specification Mini-Language
standard format specifier:
[[<fill>]<align>][<sign>][z][#][0][<width>][<group>][.<prec>][<type>]
fill
align
sign
width
grouping_option
precision
type
Conversion Flags
!s str()
!r repr()
!a ascii()