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"]) 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")