|
|
@ -1,20 +1,24 @@
|
|
|
|
Python 3.10.3 (tags/v3.10.3:a342a49, Mar 16 2022, 13:07:40) [MSC v.1929 64 bit (AMD64)] on win32
|
|
|
|
Python 3.10.3 (tags/v3.10.3:a342a49, Mar 16 2022, 13:07:40) [MSC v.1929 64 bit (AMD64)] on win32
|
|
|
|
Type "help", "copyright", "credits" or "license()" for more information.
|
|
|
|
Type "help", "copyright", "credits" or "license()" for more information.
|
|
|
|
# Протокол по Теме 1 <Голощапов Дмитрий Евгеньевич>
|
|
|
|
# Протокол по Теме 1 <Голощапов Дмитрий Евгеньевич>
|
|
|
|
>>> print('Hello')
|
|
|
|
print('Hello')
|
|
|
|
Hello
|
|
|
|
Hello
|
|
|
|
>>> h=input('Your name=')
|
|
|
|
|
|
|
|
|
|
|
|
h=input('Your name=')
|
|
|
|
Your name=Dima
|
|
|
|
Your name=Dima
|
|
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
os.chdir('C:\\Users\\Дмитрий\\OneDrive\\Рабочий стол\\Goloshchapov\\python-labs\\TEMA1')
|
|
|
|
os.chdir('C:\\Users\\Дмитрий\\OneDrive\\Рабочий стол\\Goloshchapov\\python-labs\\TEMA1')
|
|
|
|
|
|
|
|
|
|
|
|
import Pr0
|
|
|
|
import Pr0
|
|
|
|
Hello
|
|
|
|
Hello
|
|
|
|
Your name=
|
|
|
|
Your name=
|
|
|
|
>>> import prb1
|
|
|
|
|
|
|
|
|
|
|
|
import prb1
|
|
|
|
Как Вас зовут? Дима
|
|
|
|
Как Вас зовут? Дима
|
|
|
|
Привет, Дима
|
|
|
|
Привет, Дима
|
|
|
|
>>>
|
|
|
|
|
|
|
|
>>> help (print)
|
|
|
|
help (print)
|
|
|
|
|
|
|
|
|
|
|
|
Help on built-in function print in module builtins:
|
|
|
|
Help on built-in function print in module builtins:
|
|
|
|
|
|
|
|
|
|
|
@ -28,7 +32,7 @@ print(...)
|
|
|
|
end: string appended after the last value, default a newline.
|
|
|
|
end: string appended after the last value, default a newline.
|
|
|
|
flush: whether to forcibly flush the stream.
|
|
|
|
flush: whether to forcibly flush the stream.
|
|
|
|
|
|
|
|
|
|
|
|
>>> help(print), help(input)
|
|
|
|
help(print), help(input)
|
|
|
|
|
|
|
|
|
|
|
|
Help on built-in function print in module builtins:
|
|
|
|
Help on built-in function print in module builtins:
|
|
|
|
|
|
|
|
|
|
|
@ -55,4 +59,4 @@ input(prompt=None, /)
|
|
|
|
|
|
|
|
|
|
|
|
(None, None)
|
|
|
|
(None, None)
|
|
|
|
|
|
|
|
|
|
|
|
>>> import tdemo_chaos
|
|
|
|
import tdemo_chaos
|