Skip to content

Instantly share code, notes, and snippets.

@theotheo
Last active October 13, 2019 04:53
Show Gist options
  • Save theotheo/428e632f40c39cbe93d4284e55e25b87 to your computer and use it in GitHub Desktop.
Save theotheo/428e632f40c39cbe93d4284e55e25b87 to your computer and use it in GitHub Desktop.
ссылки python

операции и приоритеты

арифметические операции

https://foxford.ru/wiki/informatika/tipy-dannyh-i-prioritety-operatsiy-v-yazyke-python

https://wombat.org.ua/AByteOfPython/operators_and_expressions.html

поток управления (control flow)

https://wombat.org.ua/AByteOfPython/control_flow.html

if/else

https://pythontutor.ru/lessons/ifelse/

цикл while

https://pythontutor.ru/lessons/while/

https://foxford.ru/wiki/informatika/tsikl-while-v-python

цикл for

https://pythontutor.ru/lessons/for_loop/

https://rtfm.co.ua/books-translations/python_s_nulya/python-s-nulya-chast-5-cikly/python-s-nulya-chast-5-cikl-for/

https://foxford.ru/wiki/informatika/tsikl-for-v-python

Данные и переменные

https://devpractice.ru/python-lesson-3-data-model/

Коллекции

строки

создание, конкантенация, срезы

https://foxford.ru/wiki/informatika/stroki-v-python

списки

https://pythontutor.ru/lessons/lists/

словари

https://foxford.ru/wiki/informatika/slovari-assotsiativnye-massivy-v-python

https://pythontutor.ru/lessons/dicts/

https://devpractice.ru/python-lesson-9-dict/

срезы (slices)

https://foxford.ru/wiki/informatika/srezy-strok-v-python

функции

создание, аргументы

https://devpractice.ru/python-lesson-10-functions-in-python/

https://wombat.org.ua/AByteOfPython/functions.html (до части про "global")

https://pythontutor.ru/lessons/functions/

Классы и объекты

ООП, как создавать свои классы, конструктор класса, методы и аттрибуты, self

https://metanit.com/python/tutorial/7.1.php

https://wombat.org.ua/AByteOfPython/object_oriented_programming.html (до наследования)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment