|
|
|
@ -7,25 +7,37 @@
|
|
|
|
|
## 1.1 Работа с пунктами 3-5
|
|
|
|
|
|
|
|
|
|
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=Zakhar
|
|
|
|
|
|
|
|
|
|
## 1.2 Работа с IDLE 6-8
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
>>> import os
|
|
|
|
|
>>> os.chdir('C:\\Users\\u207-07\\Desktop\\python-labs\\TEMA1\\')
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
os.chdir('C:\\Users\\u207-07\\Desktop\\python-labs\\TEMA1\\')
|
|
|
|
|
|
|
|
|
|
## 1.3 Продолжение работы с IDLE 10-12
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
os.chdir('C:\\Users\\u207-07\\Desktop\\python-labs\\TEMA1\\')
|
|
|
|
|
|
|
|
|
|
import prb1
|
|
|
|
|
|
|
|
|
|
Как Вас зовут? Захар
|
|
|
|
|
|
|
|
|
|
Привет, Захар
|
|
|
|
|
|
|
|
|
|
//проверил работу файлов с инсутрукций в папке __pycache__//
|
|
|
|
@ -33,6 +45,7 @@ import prb1
|
|
|
|
|
## 1.4 Выполнение разных команд.
|
|
|
|
|
|
|
|
|
|
help(print); help(input)
|
|
|
|
|
|
|
|
|
|
Help on built-in function print in module builtins:
|
|
|
|
|
|
|
|
|
|
print(*args, sep=' ', end='\n', file=None, flush=False)
|
|
|
|
|