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 diff --git a/python-for-beginners/02 - Print/hello_world.py b/python-for-beginners/02 - Print/hello_world.py index 29f26030..0b41f7b0 100644 --- a/python-for-beginners/02 - Print/hello_world.py +++ b/python-for-beginners/02 - Print/hello_world.py @@ -1,2 +1,4 @@ # the print statement displays a message print('Hello world') +print('This is vishnu, going for test') +print('This is another test') \ No newline at end of file