Инструменты пользователя

Инструменты сайта


python3

Различия

Здесь показаны различия между двумя версиями данной страницы.

Ссылка на это сравнение

Предыдущая версия справа и слева Предыдущая версия
Следующая версия
Предыдущая версия
Последняя версия Следующая версия справа и слева
python3 [2018/05/08 12:52]
super_admin [python-telegram-bot]
python3 [2019/06/24 20:29]
127.0.0.1 внешнее изменение
Строка 1: Строка 1:
 ====== Программирование на языке Python3 ====== ====== Программирование на языке Python3 ======
  
-  ​* [[http://spectrum.ieee.org/static/interactive-the-top-programming-languages-2017]] - Рейтинг ​языков программирования ​2017 г..+==== Рекомендуемые редакторы программного кода ==== 
 +  ​* [[https://www.olympiads.ru/moscow/2018-19/​soft.shtml]] - Список рекомендуемого программного обеспечения для проведения олимпиад по информатике 
 +  * [[http://​www.wingware.com/​downloads/​wing-101]] Wing 101 - Version 6.1.2 - Released 2018-11-08 
 + 
 +==== Мои рекомендации по выбору сред разработки для начинающих ==== 
 + 
 +  * [[https://​thonny.org/​]] Thonny. Python IDE for beginners 
 +  * [[https://​codewith.mu/​en/​]] Code with Mu: a simple Python editor for beginner programmers. 
 +  * [[https://​codewith.mu/​en/​download]] - страница загрузки 
 + 
 +==== Справочники,​ учебные пособия ==== 
 +  * [[https://​www.w3resource.com/​python/​python-tutorial.php]] - краткое руководство на английском
  
   * http://​aliev.me/​runestone/​ - Учебник с базовыми алгоритмами:​ Problem Solving with Algorithms and Data Structures using Python By Brad Miller and David Ranum (перевод). ​   * http://​aliev.me/​runestone/​ - Учебник с базовыми алгоритмами:​ Problem Solving with Algorithms and Data Structures using Python By Brad Miller and David Ranum (перевод). ​
   * https://​runestone.academy/​runestone/​static/​pythonds/​index.html Problem Solving with Algorithms and Data Structures using Python By Brad Miller and David Ranum (английский). ​   * https://​runestone.academy/​runestone/​static/​pythonds/​index.html Problem Solving with Algorithms and Data Structures using Python By Brad Miller and David Ranum (английский). ​
 +  * https://​github.com/​ErikRHanson/​Problem-Solving-with-Algorithms-and-Data-Structures-Using-Python ​
  
   * [[https://​foxford.ru/​wiki/​informatika/​o-yazyke-python]] - О языке Python на сайте foxford.ru   * [[https://​foxford.ru/​wiki/​informatika/​o-yazyke-python]] - О языке Python на сайте foxford.ru
Строка 11: Строка 23:
  
  
-**Справочник**+**Справочник ​1**
   * [[https://​pythonz.net/​references/​named/​str.rsplit/​]] - справочник по языку Python \\   * [[https://​pythonz.net/​references/​named/​str.rsplit/​]] - справочник по языку Python \\
   * [[http://​pythonz.net/​references/​named/​mini-yazyk-formatirovaniya/​]] - Правила форматирования   * [[http://​pythonz.net/​references/​named/​mini-yazyk-formatirovaniya/​]] - Правила форматирования
 +
 +**Справочник 2**
 +  * [[http://​www.tutorialspoint.com/​python3/​list_count.htm]]
  
 **Модуль random** **Модуль random**
Строка 57: Строка 72:
 print(*sorted(map(int,​ input().split()))) print(*sorted(map(int,​ input().split())))
  
 +</​code>​
 +===  Разложение числа на простые множители ===
 +
 +<code python>
 +n = int(input())
 +i=2
 +while i*i<=n:
 +    while n%i==0:
 +        print(i)
 +        n//=i
 +    i+=1
 +if n>​1: ​
 +    print(n)
 </​code>​ </​code>​
  
Строка 333: Строка 361:
   * https://​github.com/​sreesindhusruthiyadavalli/​Python-Code-skulptor   * https://​github.com/​sreesindhusruthiyadavalli/​Python-Code-skulptor
   * https://​github.com/​gnpatterson/​codeskulptor ​   * https://​github.com/​gnpatterson/​codeskulptor ​
 +  * https://​github.com/​TogusaRusso/​codesculptorlabs
  
 === Codeskulptor3 for Python3 === === Codeskulptor3 for Python3 ===
python3.txt · Последние изменения: 2019/10/02 15:39 — super_admin