├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md └── src ├── 01 Find Prime Factors ├── README.md └── factor.py ├── 02 Identify a Palindrome ├── README.md └── palindrome.py ├── 03 Sort a String ├── README.md └── sort_words.py ├── 04 Find All List Items ├── README.md └── index_all.py ├── 05 Play the Waiting Game ├── README.md └── waiting_game.py ├── 06 Save a Dictionary ├── README.md └── dictionary.py ├── 07 Schedule a Function ├── README.md └── schedule_function.py ├── 08 Send an Email ├── README.md └── send_email.py ├── 09 Simulate Dice ├── README.md └── roll_dice.py ├── 10 Count Unique Words ├── README.md ├── count_words.py └── shakespeare.txt ├── 11 Generate a Password ├── README.md ├── diceware.py └── diceware.wordlist.asc ├── 12 Merge CSV Files ├── README.md ├── class1.csv ├── class2.csv └── merge_csv.py ├── 13 Solve a Sudoku ├── README.md └── sudoku.py ├── 14 Build a Zip Archive ├── README.md ├── my_stuff │ ├── animals │ │ ├── bird.png │ │ ├── chipmunks.jpg │ │ ├── lizard.jpg │ │ ├── pelican.jpg │ │ ├── squirrel.png │ │ ├── starfish.png │ │ └── turtle.png │ ├── flowers.jpg │ ├── formations.png │ ├── images.txt │ └── waterfall.jpg └── zip_all.py └── 15 Download Sequential Files ├── README.md └── download_files.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/README.md -------------------------------------------------------------------------------- /src/01 Find Prime Factors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/01 Find Prime Factors/README.md -------------------------------------------------------------------------------- /src/01 Find Prime Factors/factor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/01 Find Prime Factors/factor.py -------------------------------------------------------------------------------- /src/02 Identify a Palindrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/02 Identify a Palindrome/README.md -------------------------------------------------------------------------------- /src/02 Identify a Palindrome/palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/02 Identify a Palindrome/palindrome.py -------------------------------------------------------------------------------- /src/03 Sort a String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/03 Sort a String/README.md -------------------------------------------------------------------------------- /src/03 Sort a String/sort_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/03 Sort a String/sort_words.py -------------------------------------------------------------------------------- /src/04 Find All List Items/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/04 Find All List Items/README.md -------------------------------------------------------------------------------- /src/04 Find All List Items/index_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/04 Find All List Items/index_all.py -------------------------------------------------------------------------------- /src/05 Play the Waiting Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/05 Play the Waiting Game/README.md -------------------------------------------------------------------------------- /src/05 Play the Waiting Game/waiting_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/05 Play the Waiting Game/waiting_game.py -------------------------------------------------------------------------------- /src/06 Save a Dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/06 Save a Dictionary/README.md -------------------------------------------------------------------------------- /src/06 Save a Dictionary/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/06 Save a Dictionary/dictionary.py -------------------------------------------------------------------------------- /src/07 Schedule a Function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/07 Schedule a Function/README.md -------------------------------------------------------------------------------- /src/07 Schedule a Function/schedule_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/07 Schedule a Function/schedule_function.py -------------------------------------------------------------------------------- /src/08 Send an Email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/08 Send an Email/README.md -------------------------------------------------------------------------------- /src/08 Send an Email/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/08 Send an Email/send_email.py -------------------------------------------------------------------------------- /src/09 Simulate Dice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/09 Simulate Dice/README.md -------------------------------------------------------------------------------- /src/09 Simulate Dice/roll_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/09 Simulate Dice/roll_dice.py -------------------------------------------------------------------------------- /src/10 Count Unique Words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/10 Count Unique Words/README.md -------------------------------------------------------------------------------- /src/10 Count Unique Words/count_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/10 Count Unique Words/count_words.py -------------------------------------------------------------------------------- /src/10 Count Unique Words/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/10 Count Unique Words/shakespeare.txt -------------------------------------------------------------------------------- /src/11 Generate a Password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/11 Generate a Password/README.md -------------------------------------------------------------------------------- /src/11 Generate a Password/diceware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/11 Generate a Password/diceware.py -------------------------------------------------------------------------------- /src/11 Generate a Password/diceware.wordlist.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/11 Generate a Password/diceware.wordlist.asc -------------------------------------------------------------------------------- /src/12 Merge CSV Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/12 Merge CSV Files/README.md -------------------------------------------------------------------------------- /src/12 Merge CSV Files/class1.csv: -------------------------------------------------------------------------------- 1 | Name,Midterm,Final 2 | Tony,61,51 3 | Nick,98,91 4 | Keith,85,73 -------------------------------------------------------------------------------- /src/12 Merge CSV Files/class2.csv: -------------------------------------------------------------------------------- 1 | Name,Midterm,Lab,Final 2 | Alice,52,79,87 3 | Steve,84,77,53 4 | Ralph,82,91,83 -------------------------------------------------------------------------------- /src/12 Merge CSV Files/merge_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/12 Merge CSV Files/merge_csv.py -------------------------------------------------------------------------------- /src/13 Solve a Sudoku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/13 Solve a Sudoku/README.md -------------------------------------------------------------------------------- /src/13 Solve a Sudoku/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/13 Solve a Sudoku/sudoku.py -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/README.md -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/bird.png -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/chipmunks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/chipmunks.jpg -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/lizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/lizard.jpg -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/pelican.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/pelican.jpg -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/squirrel.png -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/starfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/starfish.png -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/animals/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/animals/turtle.png -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/flowers.jpg -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/formations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/formations.png -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/images.txt -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/my_stuff/waterfall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/my_stuff/waterfall.jpg -------------------------------------------------------------------------------- /src/14 Build a Zip Archive/zip_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/14 Build a Zip Archive/zip_all.py -------------------------------------------------------------------------------- /src/15 Download Sequential Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/15 Download Sequential Files/README.md -------------------------------------------------------------------------------- /src/15 Download Sequential Files/download_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/level-up-python-3210418/HEAD/src/15 Download Sequential Files/download_files.py --------------------------------------------------------------------------------