diff --git a/TEMA1/Pr0.py b/TEMA1/Pr0.py new file mode 100644 index 0000000..f8e11b2 --- /dev/null +++ b/TEMA1/Pr0.py @@ -0,0 +1,5 @@ +#Программа по Теме 1 Грудинин Егор Константинович +print('Hello') +h=input('Your name=') +import os +os.chdir('C:\\Users\\u207-08\\Desktop\\python-labs\\TEMA1\\') diff --git a/TEMA1/figure2.bmp b/TEMA1/figure2.bmp new file mode 100644 index 0000000..18c639f Binary files /dev/null and b/TEMA1/figure2.bmp differ diff --git a/TEMA1/figure4.bmp b/TEMA1/figure4.bmp new file mode 100644 index 0000000..eca0730 Binary files /dev/null and b/TEMA1/figure4.bmp differ diff --git a/TEMA1/figure5.bmp b/TEMA1/figure5.bmp new file mode 100644 index 0000000..a439603 Binary files /dev/null and b/TEMA1/figure5.bmp differ diff --git a/TEMA1/report.md b/TEMA1/report.md index 0c41f5a..b000847 100644 --- a/TEMA1/report.md +++ b/TEMA1/report.md @@ -4,7 +4,7 @@ ## 1 Знакомство с интерпретатором и интерактивной оболочкой IDLE -## 1.1 Выполнение пунктов 3-8 +## 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. @@ -13,6 +13,60 @@ Hello >>> h=input('Your name=') Your name=Egor >>> exit() + +## 1.2 Начао работы с idle, пункт 8 + >>> import os >>> os.chdir('C:\\Users\\u207-08\\Desktop\\python-labs\\TEMA1\\') +## 1.3 Выполнение пунктов 10-14 + +Hello +Your name=EGOR +import Pr0 +Hello +Your name=Egor + +Hello +Your name=Egor +import prb1 + +Как Вас зовут? Egor +Привет, Egor + +(figure2.bmp) + +help(print); help(input) +Help on built-in function print in module builtins: + +print(*args, sep=' ', end='\n', file=None, flush=False) + Prints the values to a stream, or to sys.stdout by default. + + sep + string inserted between values, default a space. + end + string appended after the last value, default a newline. + file + a file-like object (stream); defaults to the current sys.stdout. + flush + whether to forcibly flush the stream. + +Help on built-in function input in module builtins: + +input(prompt='', /) + Read a string from standard input. The trailing newline is stripped. + + The prompt string, if given, is printed to standard output without a + trailing newline before reading input. + + If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError. + On *nix systems, readline is used if available. + +## 1.4 пункт 15 +import tdemo_chaos + +(figure4.bmp) +(figure5.bmp) + + +