What kind of language is python?
strongly typed dynamic language
What can varaible names consist of in python?
letters, digits, underscore
can not start with a number
basic datatypes
bool
int
float
str
list
set
dict
What control flows does python have?
Branching (if, else, elif)
Pattern maching (match-case)
repeated execuation of a block of code (for, while)
limited precision (0.1 == 0.100000000000000001)
differenet notations (12e-3 == 0.012 )
What are boolean types evaluated to?
int(True) = 1
int(False) = 0
Strings
Sequnces of characters
Zuletzt geändertvor 10 Monaten