|
|
|
@ -8,16 +8,16 @@
|
|
|
|
|
|
|
|
|
|
Python 3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)] on win32
|
|
|
|
|
Type "help", "copyright", "credits" or "license" for more information.
|
|
|
|
|
>>> print('Hello')
|
|
|
|
|
print('Hello')
|
|
|
|
|
Hello
|
|
|
|
|
>>> h=input('Your name=')
|
|
|
|
|
h=input('Your name=')
|
|
|
|
|
Your name=Egor
|
|
|
|
|
>>> exit()
|
|
|
|
|
exit()
|
|
|
|
|
|
|
|
|
|
## 1.2 Начао работы с idle, пункт 8
|
|
|
|
|
|
|
|
|
|
>>> import os
|
|
|
|
|
>>> os.chdir('C:\\Users\\u207-08\\Desktop\\python-labs\\TEMA1\\')
|
|
|
|
|
import os
|
|
|
|
|
os.chdir('C:\\Users\\u207-08\\Desktop\\python-labs\\TEMA1\\')
|
|
|
|
|
|
|
|
|
|
## 1.3 Выполнение пунктов 10-14
|
|
|
|
|
|
|
|
|
@ -34,7 +34,7 @@ import prb1
|
|
|
|
|
Как Вас зовут? Egor
|
|
|
|
|
Привет, Egor
|
|
|
|
|
|
|
|
|
|
(figure2.bmp)
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
help(print); help(input)
|
|
|
|
|
Help on built-in function print in module builtins:
|
|
|
|
|