Skip to content

Commit a982e25

Browse files
committed
Add Magic8Ball
1 parent c2825cf commit a982e25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
### Python Mini Project
1+
## Python Mini Project
22

33
Although I can code in other languages, I am new to Python. This repo contains projects developed as I extend my Python coding skills.
44

55
* Most are sourced from those listed in https://github.com/jorgegonzalez/beginner-projects
66
* Have also included additional projects from other sources
77
* Each project increases in level of difficulty (see the main listing for further details)
88

9-
#### 99 Bottles
9+
### 99 Bottles
1010
A program that uses a built in function to print out every line to the song "99 bottles of beer on the wall."
1111

1212
**What I learned:**
@@ -15,7 +15,7 @@ A program that uses a built in function to print out every line to the song "99
1515
3. Print statements
1616
4. Working with strings
1717

18-
#### Armstrong Number
18+
### Armstrong Number
1919
An Armstrong Number is any number of n digits which is equal to the sum of nth power of digits in the number.
2020
For example: 92727 = 9^5 + 2^5 + 7^5 + 2^5 + 7^5 (where n = 5)
2121
A program to check whether a given number is an Armstrong Number. Users may enter multiple tests.
@@ -26,7 +26,7 @@ A program to check whether a given number is an Armstrong Number. Users may ente
2626
3. While loops
2727
4. Using flags
2828

29-
#### Magic 8 Ball
29+
### Magic 8 Ball
3030
Simulation of a magic 8-ball. Allow the user to enter their question and display an in progress message.
3131
Create 20 responses, and show a random response. Allow the user to ask another question or quit.
3232
Program includes a GUI where users can enter the following questions:
@@ -41,7 +41,7 @@ Program includes a GUI where users can enter the following questions:
4141
3. Creating a GUI with Ktinker
4242
4. Lists and arrays
4343

44-
#### Pythagorean Triples Checker
44+
### Pythagorean Triples Checker
4545
A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a² + b² = c².
4646
Allows the user to input the sides of any triangle in any order and returns whether the triangle is a Pythagorean Triple or not.
4747
Users may reuse the program without having to quit.

0 commit comments

Comments
 (0)