diff --git a/kjg/python-the-hard-way/e3.py b/kjg/python-the-hard-way/e3.py new file mode 100644 index 0000000..e7067be --- /dev/null +++ b/kjg/python-the-hard-way/e3.py @@ -0,0 +1,23 @@ +print(" I will now count my chickens : ") + +print("Hens", 25 + 30 / 6) +print("Roosters", 100 - 25 * 3 % 4 ) + +print("Now I will count the eggs : ") + +print(3 + 2 + 1 - 5 + 4 % 2 -1 / 4 + 6) + +print("Is it true that 3 + 2 < 5 - 7?") + +print(3 + 2 < 5 -7 ) + +print("What is 3 + 2?", 3 + 2) +print("What is 5 - 7?", 5 - 7) + +print("Oh, that;s why it's Fasle.") + +print("How about some more.") + +print("Is it greater?", 5 > -2) +print("Is it greater or equal?", 5 >= -2) +print("Is it less or equal?", 5 <= -2) diff --git a/kjg/python.org b/kjg/python.org index 0d17b72..4dea597 100644 --- a/kjg/python.org +++ b/kjg/python.org @@ -20,3 +20,19 @@ I "said" do not touch this. **** ex2 I could have code like this. This will run. + +**** ex3 +I will now count my chickens : +Hens 30.0 +Roosters 97 +Now I will count the eggs : +6.75 +Is it true that 3 + 2 < 5 - 7? +False +What is 3 + 2? 5 +What is 5 - 7? -2 +Oh, that;s why it's Fasle. +How about some more. +Is it greater? True +Is it greater or equal? True +Is it less or equal? False