From 090b7fc4f93fae1bb8300dc71dcbf93fe7fd05af Mon Sep 17 00:00:00 2001 From: novicevg Date: Wed, 24 May 2023 22:51:13 -0400 Subject: [PATCH 1/3] testpy101-This is my test --- python-for-beginners/02 - Print/hello_world.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python-for-beginners/02 - Print/hello_world.py b/python-for-beginners/02 - Print/hello_world.py index 29f26030..537eb830 100644 --- a/python-for-beginners/02 - Print/hello_world.py +++ b/python-for-beginners/02 - Print/hello_world.py @@ -1,2 +1,3 @@ # the print statement displays a message print('Hello world') +print('This is vishnu, going for test') \ No newline at end of file From 0cc6d695a16de2222c561cd787a396db11940f1a Mon Sep 17 00:00:00 2001 From: novicevg Date: Wed, 24 May 2023 23:40:25 -0400 Subject: [PATCH 2/3] This is to learn another Branch creation --- python-for-beginners/02 - Print/hello_world.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python-for-beginners/02 - Print/hello_world.py b/python-for-beginners/02 - Print/hello_world.py index 537eb830..0b41f7b0 100644 --- a/python-for-beginners/02 - Print/hello_world.py +++ b/python-for-beginners/02 - Print/hello_world.py @@ -1,3 +1,4 @@ # the print statement displays a message print('Hello world') -print('This is vishnu, going for test') \ No newline at end of file +print('This is vishnu, going for test') +print('This is another test') \ No newline at end of file From 442e4a3c430d71417a53d14ca86b9b24ac407ba9 Mon Sep 17 00:00:00 2001 From: novicevg Date: Thu, 25 May 2023 08:15:23 -0400 Subject: [PATCH 3/3] test PR test102 This is me, testing another PR test --- python-for-beginners/02 - Print/ask_for_input.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-for-beginners/02 - Print/ask_for_input.py b/python-for-beginners/02 - Print/ask_for_input.py index 7721a330..23a8b07d 100644 --- a/python-for-beginners/02 - Print/ask_for_input.py +++ b/python-for-beginners/02 - Print/ask_for_input.py @@ -2,4 +2,8 @@ # You need to declare a variable to hold the value entered by the user name = input('What is your name? ') -print(name) \ No newline at end of file +print(name) + +place = input('where do you live? ') + +print(place) \ No newline at end of file