diff --git a/TEMA1/report.md b/TEMA1/report.md index dda3280..ae6bd31 100644 --- a/TEMA1/report.md +++ b/TEMA1/report.md @@ -39,44 +39,57 @@ ```py >>> help(print) -'Help on built-in function print in module builtins:' +'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.' +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.' + 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(print) -'Help on built-in function print in module builtins:' +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.' +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.' + 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.' + 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.' + If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError. + On *nix systems, readline is used if available. -'(None, None)' -``` \ No newline at end of file +(None, None) +``` + +## 1.6 Выполнение пункта 15 + +```py +==================== RESTART: C:\Users\u111-04\Desktop\python-labs\TEMA1\prb1.py =================== +Как Вас зовут? Maxim +Привет, Maxim + +>>> import tdemo_chaos +================ RESTART: C:\Users\u111-04\Desktop\python-labs\TEMA1\tdemo_chaos.py ================ +``` +![Скриншот вывода программы tdemo_chaos](figure4.png) +![Скриншот окна с примером "Часы"](figure5.png) \ No newline at end of file