2020-05-18 14:35:46 +00:00
|
|
|
|
|
|
|
* learning python
|
2020-05-18 13:41:27 +00:00
|
|
|
|
|
|
|
*** Python #1:
|
|
|
|
**** ex0
|
|
|
|
**** ex1
|
|
|
|
>>> print("Hello World!")
|
|
|
|
... print("Hello Again")
|
|
|
|
... print("I like typing this.")
|
|
|
|
... print("This is fun.")
|
|
|
|
... print('Yay! Printing.')
|
|
|
|
... print("I'd much rather you 'not'.")
|
|
|
|
... print('I "said" do not touch this.')
|
|
|
|
Hello World!
|
|
|
|
Hello Again
|
|
|
|
I like typing this.
|
|
|
|
This is fun.
|
|
|
|
Yay! Printing.
|
|
|
|
I'd much rather you 'not'.
|
|
|
|
I "said" do not touch this.
|
2020-05-18 13:46:09 +00:00
|
|
|
**** ex2
|
|
|
|
I could have code like this.
|
|
|
|
This will run.
|
2020-05-18 13:55:52 +00:00
|
|
|
|
|
|
|
**** 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
|
2020-05-18 14:01:21 +00:00
|
|
|
**** ex4
|
|
|
|
There are 100 cars available.
|
|
|
|
There are only 30 drivers available.
|
|
|
|
There will be 70 empty cars today.
|
|
|
|
We can transport 120.0 people today.
|
|
|
|
We have 90 to carpool today.
|
|
|
|
We need to put about 3.0 in each car.
|
2020-05-18 14:17:12 +00:00
|
|
|
|
|
|
|
**** ex5
|
|
|
|
Let's talk about Zed A. Shaw.
|
|
|
|
He's 74 inches tall.
|
|
|
|
He's 180 pounds heavy.
|
|
|
|
Actually that's not too heavy.
|
|
|
|
He's got Blue eyes and Brown hair.
|
|
|
|
His teeth are usually White depending on the coffee.
|
|
|
|
If I add 35, 74, and 180 I get 289.
|
2020-05-18 14:25:54 +00:00
|
|
|
**** ex6
|
|
|
|
There are 10 types of people.
|
|
|
|
Those who know binary and those who don't.
|
|
|
|
I said: There are 10 types of people.
|
|
|
|
I also said: 'Those who know binary and those who don't.'
|
|
|
|
Isn't that joke so funny?! False
|
|
|
|
This is the left side of...a string with a right side.
|
2020-05-18 14:35:46 +00:00
|
|
|
**** ex7
|
|
|
|
Mary had a little lamb.
|
|
|
|
Its fleece was white as snow.
|
|
|
|
And everywhere that Mary went.
|
|
|
|
..........
|
|
|
|
Cheese Burger
|
2020-05-20 12:16:04 +00:00
|
|
|
*** Python #2:
|
|
|
|
**** ex8
|
|
|
|
learn about a more complicated formatting of a string. {}
|
2020-05-20 12:31:00 +00:00
|
|
|
**** ex9
|
|
|
|
how to print for multiline or nextline
|
2020-05-20 12:46:08 +00:00
|
|
|
**** ex10
|
|
|
|
how to use \ (using special chracter)
|
2020-05-20 12:55:04 +00:00
|
|
|
**** ex11
|
|
|
|
how to use key input
|
2020-05-20 13:12:47 +00:00
|
|
|
**** ex12
|
|
|
|
how to use key input with print
|
2020-05-20 13:37:15 +00:00
|
|
|
**** ex13
|
|
|
|
how to use an argument when you run script
|
2020-05-20 13:52:18 +00:00
|
|
|
**** ex14
|
|
|
|
how to use an argument with input
|
2020-05-22 12:19:18 +00:00
|
|
|
*** Python #3:
|
|
|
|
**** ex15
|
|
|
|
How to use read function from file
|
2020-05-22 12:39:59 +00:00
|
|
|
**** ex16
|
2020-05-22 12:54:30 +00:00
|
|
|
How to write file
|
|
|
|
**** ex17
|
|
|
|
How to copy file
|
2020-05-22 13:08:40 +00:00
|
|
|
**** ex18
|
|
|
|
How to use function
|
2020-05-22 13:32:42 +00:00
|
|
|
**** ex19
|
|
|
|
How to use function and variables
|
2020-05-22 13:49:51 +00:00
|
|
|
**** ex20
|
|
|
|
How to use function with file
|