1- ### Python Mini Project
1+ ## Python Mini Project
22
33Although 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
1010A 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
15153 . Print statements
16164 . Working with strings
1717
18- #### Armstrong Number
18+ ### Armstrong Number
1919An Armstrong Number is any number of n digits which is equal to the sum of nth power of digits in the number.
2020For example: 92727 = 9^5 + 2^5 + 7^5 + 2^5 + 7^5 (where n = 5)
2121A 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
26263 . While loops
27274 . Using flags
2828
29- #### Magic 8 Ball
29+ ### Magic 8 Ball
3030Simulation of a magic 8-ball. Allow the user to enter their question and display an in progress message.
3131Create 20 responses, and show a random response. Allow the user to ask another question or quit.
3232Program 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:
41413 . Creating a GUI with Ktinker
42424 . Lists and arrays
4343
44- #### Pythagorean Triples Checker
44+ ### Pythagorean Triples Checker
4545A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a² + b² = c².
4646Allows the user to input the sides of any triangle in any order and returns whether the triangle is a Pythagorean Triple or not.
4747Users may reuse the program without having to quit.
0 commit comments