[Python #3] test ex22
This commit is contained in:
parent
ac07307855
commit
45075b96b4
4 changed files with 10 additions and 5 deletions
|
@ -5,11 +5,11 @@ print("Roosters", 100 - 25 * 3 % 4 )
|
|||
|
||||
print("Now I will count the eggs : ")
|
||||
|
||||
print(3 + 2 + 1 - 5 + 4 % 2 -1 / 4 + 6)
|
||||
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(3 + 2 < 5 - 7 )
|
||||
|
||||
print("What is 3 + 2?", 3 + 2)
|
||||
print("What is 5 - 7?", 5 - 7)
|
||||
|
|
3
kjg/python-the-hard-way/new_file2.txt
Normal file
3
kjg/python-the-hard-way/new_file2.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
test line1
|
||||
test line2
|
||||
test line3
|
|
@ -1,3 +1,3 @@
|
|||
This is line 1
|
||||
This is line 2
|
||||
This is line 3
|
||||
test line1
|
||||
test line2
|
||||
test line3
|
||||
|
|
|
@ -96,3 +96,5 @@ How to use function and variables
|
|||
How to use function with file
|
||||
**** ex21
|
||||
How to use fucntion with return
|
||||
**** ex22
|
||||
repeat from ex2 to ex21
|
||||
|
|
Loading…
Reference in a new issue