From eb4bc08c3c60712860b29553245e3c881984369c Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 7 Apr 2017 22:04:57 -0400 Subject: [PATCH] oops --- python.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python.md b/python.md index 741964e..dff9a76 100644 --- a/python.md +++ b/python.md @@ -125,11 +125,11 @@ else: The conditions can be -- < less than -- > greater than -- <= less than or equal to -- >= greater than or equal to -- == an exact match +- `<` less than +- `>` greater than +- `<=` less than or equal to +- `>=` greater than or equal to +- `==` an exact match You can also compare strings: @@ -167,7 +167,7 @@ while a < 20: 1. Write a program that models this flow chart: - ![where should I post that?](http://socialnewsdaily.com/wp-content/uploads/2013/04/where-do-i-post-it.jpg) + ![where should I post that?](http://mentalfloss.com/sites/default/legacy/blogs/wp-content/uploads/2011/06/550pictionary.jpg) 1. Given the following list [70, 95, 97, 55, 3, 24, 89, 97, 84, 11] - Write a program that loops through each value in the list and prints it