![Набор инструментов, который используется для написания программ? Programming environment](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img0.jpg)
Набор инструментов, который используется для написания программ?
Programming environment
![Интегрированная система, которая позволяет писать, редактировать, отлаживать и запускать программы на выполнение, не выходя из самой среды. IDE](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img1.jpg)
Интегрированная система, которая позволяет писать, редактировать, отлаживать и запускать программы на выполнение, не выходя из самой среды.
IDE
![Переводит весь текст программы в машинный код (исполняемый файл с расширением exe) Compiler](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img2.jpg)
Переводит весь текст программы в машинный код
(исполняемый файл с расширением exe)
Compiler
![Python can: создавать графический пользовательский интерфейс рабочего стола создавать web-сайт создавать программное обеспечение и игры предоставлять доступ к базе данных](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img3.jpg)
Python can:
создавать графический пользовательский интерфейс рабочего стола
создавать web-сайт
создавать программное обеспечение и игры
предоставлять доступ к базе данных
![Code: print (‘2+3’) Output: 2 + 3 Code: print (2+3) Output: 2 + 3 Code: print (Hello world) Output: SyntaxError](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img4.jpg)
Code: print (‘2+3’)
Output: 2 + 3
Code: print (2+3)
Output: 2 + 3
Code: print (Hello world)
Output: SyntaxError
![Code: print (‘Your new score is’, 1030+10) Output: Your new score is 1040 Code: print (‘Your new score is’, ‘1030+10’) Output: Your new score is 1030 + 10](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img5.jpg)
Code:
print (‘Your new score is’, 1030+10)
Output:
Your new score is 1040
Code:
print (‘Your new score is’, ‘1030+10’)
Output:
Your new score is 1030 + 10
![Code: print (‘Your new score is ‘ 1030+10) Output: Error Code: print (‘Your new score is,’, 1030+10) Output: Your new score is, 1040](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img6.jpg)
Code:
print (‘Your new score is ‘ 1030+10)
Output:
Error
Code:
print (‘Your new score is,’, 1030+10)
Output:
Your new score is, 1040
![Variables. Переменные.](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img7.jpg)
Variables. Переменные.
![learn purposes of variables; узнать назначение переменных; learn how to input data; узнайте, как вводить данные.](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img8.jpg)
- learn purposes of variables;
- узнать назначение переменных;
- learn how to input data;
- узнайте, как вводить данные.
![How to store and process data in programming language?](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img9.jpg)
How to store and process data in programming language?
![](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img10.jpg)
![Operators used in programming.](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img11.jpg)
Operators used in programming.
![ПУСК- ВСЕ ПРОГРАММЫ-PYTHON 3.4-IDLE](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img12.jpg)
ПУСК- ВСЕ ПРОГРАММЫ-PYTHON 3.4-IDLE
![Practice 1. Let us make simple calculations using Python: 45 * 263 = 85 / 23 = 123 + 4568 = 7894 - 456 = 123.35 * 23.45 =](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img13.jpg)
Practice
1. Let us make simple calculations using Python:
45 * 263 =
85 / 23 =
123 + 4568 =
7894 - 456 =
123.35 * 23.45 =
![Practice 2. Practice using following expressions in Python: a + b a // b a – b a % b a * b a ** 2 a / b a ** b](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img14.jpg)
Practice
2. Practice using following expressions in Python:
a + b a // b
a – b a % b
a * b a ** 2
a / b a ** b
![Practice 3. Calculate the following problems using Python: Dias has 500 KZT and Adilkhan has 1000 KZT. Print their total amount of money.](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img15.jpg)
Practice
3. Calculate the following problems using Python:
Dias has 500 KZT and Adilkhan has 1000 KZT. Print their
total amount of money.
![Practice 4. Calculate the following problems using Python: Dias and Adilkhan want to buy an ice cream bucket which costs 1200 KZT. How much money will be left if they buy that bucket?](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img16.jpg)
Practice
4. Calculate the following problems using Python:
Dias and Adilkhan want to buy an ice cream bucket
which costs 1200 KZT. How much money will be left if
they buy that bucket?
![Practice 5. Calculate the following problems using Python: Dias and Adilkhan fi nished eating the ice cream bucket, but still want to eat more. They found ice cream which costs 50 KZT. How many ice creams can they buy now?](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img17.jpg)
Practice
5. Calculate the following problems using Python:
Dias and Adilkhan fi nished eating the ice cream bucket,
but still want to eat more. They found ice cream which
costs 50 KZT. How many ice creams can they buy now?
![Homwork: abstract](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img18.jpg)
Homwork:
abstract
![exspert Reflection confident capable beginner](https://fsd.videouroki.net/html/2019/01/31/v_5c52d3bde268c/img19.jpg)
exspert
Reflection
confident
capable
beginner