From b6eda9aba7935328dccc8141ee5aa7c8625a299b Mon Sep 17 00:00:00 2001 From: Nikita6599 <43905004+Nikita6599@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:00:11 +0530 Subject: [PATCH 1/2] Update 09_dictionaries.py --- src/09_dictionaries.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/09_dictionaries.py b/src/09_dictionaries.py index a8b2911f64..c2fb54c673 100644 --- a/src/09_dictionaries.py +++ b/src/09_dictionaries.py @@ -34,14 +34,19 @@ ] # Add a new waypoint to the list -# YOUR CODE HERE - +waypoints.append({"lat":45,"lon":100,"name": "wonderful place"}) # Modify the dictionary with name "a place" such that its longitude # value is -130 and change its name to "not a real place" # Note: It's okay to access the dictionary using bracket notation on the # waypoints list. -# YOUR CODE HERE - +for i in range(len(waypoints)): + if waypoints[i]["name"]=="a place": + waypoints[i]["lon"]=-130 + waypoints[i]["name"]="not a real place" # Write a loop that prints out all the field values for all the waypoints -# YOUR CODE HERE \ No newline at end of file +# YOUR CODE HERE +for i in range(len(waypoints)): + print(waypoints[i]["lat"]) + print(waypoints[i]["lon"]) + print(waypoints[i]["name"]) From 7601f8350084cab2bec09771ed5c68f71a69f4b6 Mon Sep 17 00:00:00 2001 From: Nikita6599 <43905004+Nikita6599@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:03:14 +0530 Subject: [PATCH 2/2] Update 10_functions.py --- src/10_functions.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/10_functions.py b/src/10_functions.py index 5830100c2c..a048225749 100644 --- a/src/10_functions.py +++ b/src/10_functions.py @@ -2,6 +2,12 @@ # YOUR CODE HERE +def is_even(n): + if n%2==0: + return True + else: + return False + # Read a number from the keyboard num = input("Enter a number: ") num = int(num) @@ -9,4 +15,8 @@ # Print out "Even!" if the number is even. Otherwise print "Odd" # YOUR CODE HERE +if is_even(num): + print("Even!") +else: + print("Odd")