Please enable JavaScript.
Coggle requires JavaScript to display documents.
BestPython - Coggle Diagram
BestPython
Тип данных
int
float
string
неизменяемый(immutable)
methods
.toLower()
.toUpper()
.startWith(str)
.endWith(str)
.split(' ')
bool
list
methods
.append()
.pop()
.sort()
.insert(index, el)
.clear()
.copy()
.index('val')
tuple
dict(or map)
Глобальные функции
print()
type()
len()
Введение
Применение
Веб приложение
Десктопное приложение
Машинное обучение
Особенности
динам. типизация
Кроссплатформанность
Краткий синтаксис
Преоброзование
int(str)
float(str)