27 сайтов с задачками для оттачивания навыков программирования https://proglib.io/p/27-puzzle-websites-to-sharpen-your-skills/
Основы программирования на питоне https://younglinux.info/sites/default/files/pdf/python_structured_programming.pdf
Python Tutorial https://www.w3schools.com/python/
Программирование на Python. https://stepik.org/course/67/syllabus
Лаборатория линуксоида https://younglinux.info/python.php
Язык Python: http://www.python.org
Питонтьютор http://pythontutor.ru
Среда разработки Wing IDE: http://www.wingware.com
Приложение Темы проектов: Reverse a String – Enter a string and the program will reverse it and print it out.
Pig Latin – Pig Latin is a game of alterations played on the English language game. To create the Pig Latin form of an English word the initial consonant sound is transposed to the end of the word and an ay is affixed (Ex.: "banana" would yield anana-bay). Read Wikipedia for more information on rules.
Count Vowels – Enter a string and the program counts the number of vowels in the text. For added complexity have it report a sum of each vowel found.
Check if Palindrome – Checks if the string entered by the user is a palindrome. That is that it reads the same forwards as backwards like “racecar”
Count Words in a String – Counts the number of individual words in a string. For added complexity read these strings in from a text file and generate a summary.
Text Editor – Notepad style application that can open, edit, and save text documents. Add syntax highlighting and other features.
RSS Feed Creator – A program which can read in text from other sources and put it in RSS or Atom news format for syndication.