From 3fc286b7b22e70783d54f2cdb918ae69d7628255 Mon Sep 17 00:00:00 2001 From: Aleksey Yanovich Date: Sun, 1 Dec 2019 21:04:41 +0300 Subject: [PATCH 1/5] initial_commit Print "Hello world" in stdout. --- main.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..f7d1785 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +print('Hello world') From 30e013351c4d003fed03aa9bd2ae1838db2fecc2 Mon Sep 17 00:00:00 2001 From: Aleksey Yanovich Date: Sun, 1 Dec 2019 21:13:41 +0300 Subject: [PATCH 2/5] owner_name Added the ability to enter a name. Added question about weather. --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index f7d1785..8bf82c2 100644 --- a/main.py +++ b/main.py @@ -1 +1,2 @@ -print('Hello world') +print(f'Hello {input("please enter your name: ")}') +print('How is the weather today?') From ad34aa6a542f7807cc9f13508346e0d70ea39c86 Mon Sep 17 00:00:00 2001 From: Aleksey Yanovich Date: Sun, 1 Dec 2019 21:19:36 +0300 Subject: [PATCH 3/5] add_adjective Added some adjectives to greeting message. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 8bf82c2..858894b 100644 --- a/main.py +++ b/main.py @@ -1,2 +1,2 @@ -print(f'Hello {input("please enter your name: ")}') +print(f'Hello brave new {input("please enter your name: ")}') print('How is the weather today?') From 90bf40421c7c004c5873dbe884d273ba7f6bc42a Mon Sep 17 00:00:00 2001 From: Aleksey Yanovich Date: Sun, 1 Dec 2019 22:19:56 +0300 Subject: [PATCH 4/5] Change .gitignore Add jpg files to .gitignore. --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76ce7fc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.jpg From db571c2c47cb9000ea150555f16b13e95eea0c03 Mon Sep 17 00:00:00 2001 From: Aleksey Yanovich Date: Sun, 1 Dec 2019 22:22:48 +0300 Subject: [PATCH 5/5] Revert "Change .gitignore" This reverts commit 90bf40421c7c004c5873dbe884d273ba7f6bc42a. --- .gitignore | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 76ce7fc..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.jpg