├── .gitignore ├── API-quote-GUI-app ├── background.png ├── main.py └── next.png ├── Amazon-price-tracker └── main.py ├── Automated-birthday-wishes-via-email ├── birthdays.csv ├── letter_templates │ ├── letter_1.txt │ ├── letter_2.txt │ └── letter_3.txt └── main.py ├── Automated-send-motivation_quote_via_email ├── quotes.txt ├── send_email_and_datetime_basic.py └── send_quote_weekly.py ├── Beautiful-soup-Hacker-News-Website └── main.py ├── Beautiful-soup-Spotify-playlist ├── main.py └── token.txt ├── Beautiful-soup-exercises ├── basic.py └── website.html ├── Beautiful-soup-top-100-movies-website ├── main.py └── must_watch_movies.txt ├── Bidder-and-winner ├── .upm │ └── store.json ├── __pycache__ │ └── art.cpython-38.pyc ├── art.py ├── main.py ├── poetry.lock └── pyproject.toml ├── Blackjack ├── Blackjack_Flowchart.pdf ├── art.py └── main.py ├── Coffee-machine ├── Coffee-Machine-Program-Requirements.pdf ├── __pycache__ │ └── menu.cpython-310.pyc ├── main.py └── menu.py ├── Color-art-turtle-module ├── generate a Spirograph, circle loop.py ├── generate a random wander turtle.py └── print a n-number of sides of polygon.py ├── Comprehension-exercises ├── Dictionary-comprehension │ ├── Celsius _to_Fahrenheit.py │ ├── basic.py │ └── split_string_into_list.py └── List-comprehension │ ├── basic.py │ ├── filtering_even number.py │ ├── find_same_number_in_both_files │ ├── file1.txt │ ├── file2.txt │ └── main.py │ └── squaring_number.py ├── Exception-handling-exercises ├── NATO_Phonetic.py ├── basic.py ├── index_error.py ├── key_error.py └── nato_phonetic_alphabet.csv ├── Extra Knowledge ├── intermediate level & method │ ├── __main__ │ │ ├── main.py │ │ └── module1.py │ ├── enumerate │ │ └── main.py │ ├── flask │ │ ├── __pycache__ │ │ │ └── main.cpython-310.pyc │ │ └── main.py │ ├── lambda │ │ └── main.py │ ├── map, filter, reduce │ │ ├── filter.py │ │ ├── main.py │ │ ├── map.py │ │ └── reduce.py │ ├── python_exercise │ │ ├── idex_of_last_1.py │ │ ├── increment_of_digit_list.py │ │ └── zero_reaplcec_to_5.py │ ├── read_file │ │ └── read_file.py │ ├── unpack_tuple_&_list │ │ └── main.py │ └── yield │ │ └── main.py └── modules │ ├── datetime │ └── date.py │ ├── openpyxl │ ├── example.xlsx │ ├── read_created_excel.py │ ├── sample.xlsx │ ├── start-up.py │ └── write_new_excel.py │ ├── pandas │ ├── dataframe.py │ ├── descriptive.py │ └── series.py │ ├── pyqt5 │ ├── datetime │ │ ├── current_date_time.py │ │ ├── difference_days.py │ │ └── number_of_day.py │ ├── event & signal │ │ ├── reimplementing_event.py │ │ └── signal_slots.py │ ├── layout │ │ ├── absolute.py │ │ ├── form.py │ │ ├── grid.py │ │ └── horizontal_vertical.py │ ├── menu & toolbar │ │ ├── check_menu.py │ │ ├── main_area.py │ │ ├── right_click_menu.py │ │ ├── simple_menu.py │ │ ├── status_bar.py │ │ ├── submenu.py │ │ └── toolbar.py │ ├── start_up.py │ ├── tooltip_&_logo.py │ └── widget │ │ ├── calendar.py │ │ ├── check_box.py │ │ ├── display_image.py │ │ ├── drop_down_list.py │ │ ├── input_dialog.py │ │ ├── input_edit.py │ │ ├── max.jpg │ │ ├── med.jpg │ │ ├── min.jpg │ │ ├── mute.jpg │ │ ├── progress_bar.py │ │ ├── quit_button_&_message_box.py │ │ ├── slider.py │ │ ├── splitter.py │ │ └── toggle_button.py │ ├── request │ ├── get.py │ ├── hello.txt │ └── response_method.py │ └── selenium │ └── start_up.py ├── Flask-server ├── decorator.py └── hello.py ├── Flight-deals-API ├── data_manager.py ├── flight_data.py ├── flight_search.py ├── main.py └── notification_manager.py ├── Google-sheet-workout-tracker └── main.py ├── Grading-system └── main.py ├── Guessing-Number-Game ├── art.py └── main.py ├── Habit-Tracker-with-Pixela-API └── main.py ├── Hangman-game ├── .upm │ └── store.json ├── __pycache__ │ ├── hangman_art.cpython-38.pyc │ └── hangman_words.cpython-38.pyc ├── hangman_art.py ├── hangman_words.py ├── main.py ├── poetry.lock └── pyproject.toml ├── Higher-lower-game ├── __pycache__ │ ├── art.cpython-310.pyc │ └── game_data.cpython-310.pyc ├── art.py ├── game_data.py └── main.py ├── How-many-days-in-a-month └── main.py ├── International-space-station-location └── main.py ├── Leap-year-generator └── main.py ├── Mail-merge-project ├── .DS_Store ├── Input │ ├── .DS_Store │ ├── Letters │ │ └── starting_letter.txt │ └── Names │ │ └── invited_names.txt ├── Output │ └── ReadyToSend │ │ └── example.txt └── main.py ├── Message-encode-and-decode-generator ├── .upm │ └── store.json ├── __pycache__ │ └── art.cpython-38.pyc ├── art.py ├── main.py ├── poetry.lock └── pyproject.toml ├── Miles-to-Kilometers-GUI-converter └── main.py ├── NATO-alphabet ├── main.py └── nato_phonetic_alphabet.csv ├── OOP-coffee-machine ├── __pycache__ │ ├── coffee_maker.cpython-310.pyc │ ├── menu.cpython-310.pyc │ └── money_machine.cpython-310.pyc ├── coffee_maker.py ├── main.py ├── menu.py └── money_machine.py ├── OOP-exercises ├── OOP-abstraction, polymorphism │ ├── __pycache__ │ │ ├── item.cpython-310.pyc │ │ ├── keyboard.cpython-310.pyc │ │ └── phone.cpython-310.pyc │ ├── abstraction_example.py │ ├── item.py │ ├── keyboard.py │ ├── phone.py │ └── polymophism_example.py ├── OOP-bacis-example │ └── main.py ├── OOP-class attribute vs instance attribute, __dict__ magic method │ └── main.py ├── OOP-construtor, instance, attribute, method, assert │ └── main.py ├── OOP-getter & setter, encapsulation │ ├── __pycache__ │ │ ├── item.cpython-310.pyc │ │ └── phone.cpython-310.pyc │ ├── item.py │ └── main.py ├── OOP-inheritance │ ├── __pycache__ │ │ ├── item.cpython-310.pyc │ │ └── phone.cpython-310.pyc │ ├── item.py │ ├── main.py │ ├── phone.py │ └── test.py ├── OOP-instantiate from CSV, class method, static method │ ├── item.csv │ └── main.py ├── OOP-save instance into class level list, __repr__ magic method │ └── main.py └── OOP-turtle-package │ └── main.py ├── OOP-quiz-game ├── .vscode │ └── settings.json ├── __pycache__ │ ├── data.cpython-310.pyc │ ├── question_model.cpython-310.pyc │ └── quiz_brain.cpython-310.pyc ├── data.py ├── main.py ├── question_model.py └── quiz_brain.py ├── Pandas-exercises ├── Pandas-iterate-over-dataframe.py ├── Pandas-read-column-from-csv │ ├── main.py │ └── weather_data.csv ├── Pandas-read-row, mean, max, write-csv-data │ ├── main.py │ ├── new_data.csv │ └── weather_data.csv └── Pandas-squirrel-dataset │ ├── 2018_Central_Park_Squirrel_Census_-_Squirrel_Data.csv │ ├── main.py │ └── squirrel_count.csv ├── Pizza-ordering └── main.py ├── Pomodoro-timer ├── main.py └── tomato.png ├── Pong-game ├── Difference between with inheritance and without inherintance Turtle class.png ├── ball.py ├── main.py ├── paddle.py └── scoreboard.py ├── Popcat-autoclicker └── main.py ├── Prime-number-generator └── main.py ├── Quizzler-API-quiz-app-GUI ├── data.py ├── images │ ├── false.png │ └── true.png ├── main.py ├── question_model.py ├── quiz_brain.py └── ui.py ├── Random-bill-payer └── main.py ├── Random-password-generator ├── .upm │ └── store.json └── main.py ├── Rock-paper-scissors ├── .upm │ └── store.json ├── README.md └── main.py ├── SMS-Weather-API ├── data.json └── main.py ├── Selenium-exercises ├── interaction.py └── search_element.py ├── Simple Calculator ├── __pycache__ │ └── art.cpython-38.pyc ├── art.py └── main.py ├── Sketch-game └── main.py ├── Snake-game-with-higest-score-text-file-record ├── food.py ├── highest_score_database.txt ├── main.py ├── read write file example │ ├── my_text.txt │ └── read_wirte_example.py ├── score_board.py └── snake.py ├── Snake-game ├── __pycache__ │ ├── food.cpython-310.pyc │ ├── score_board.cpython-310.pyc │ ├── screen.cpython-310.pyc │ └── snake.cpython-310.pyc ├── food.py ├── main.py ├── score_board.py └── snake.py ├── TSLA-stock-tracker-API ├── main.py └── three_articles_layout.py ├── Tip-calculator ├── .upm │ └── store.json ├── README.md └── main.py ├── Tkinter-exercises, unlimited arg, kwarg ├── label,button,entry,layout.py ├── optional-arguments │ ├── optinal_args_and_kwargs_playground.py │ ├── optional_args.py │ └── optional_kwargs.py └── text,spinkbox,scale,checkbox,radio button, listbox.py ├── Treasure-island-game ├── .upm │ └── store.json ├── README.md └── main.py ├── Turtle-crossing-road-game ├── car_manager.py ├── main.py ├── player.py └── scoreboard.py ├── Turtle-run-race-game └── main.py ├── US-state-quiz-game ├── 50_states.csv ├── States_that_not_guessed_correct.csv ├── blank_states_img.gif └── main.py └── Website-image-downloader-example ├── link.txt └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | .history/ 2 | .vscode/ 3 | __pycache__/ -------------------------------------------------------------------------------- /API-quote-GUI-app/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/API-quote-GUI-app/background.png -------------------------------------------------------------------------------- /API-quote-GUI-app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/API-quote-GUI-app/main.py -------------------------------------------------------------------------------- /API-quote-GUI-app/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/API-quote-GUI-app/next.png -------------------------------------------------------------------------------- /Amazon-price-tracker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Amazon-price-tracker/main.py -------------------------------------------------------------------------------- /Automated-birthday-wishes-via-email/birthdays.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-birthday-wishes-via-email/birthdays.csv -------------------------------------------------------------------------------- /Automated-birthday-wishes-via-email/letter_templates/letter_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-birthday-wishes-via-email/letter_templates/letter_1.txt -------------------------------------------------------------------------------- /Automated-birthday-wishes-via-email/letter_templates/letter_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-birthday-wishes-via-email/letter_templates/letter_2.txt -------------------------------------------------------------------------------- /Automated-birthday-wishes-via-email/letter_templates/letter_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-birthday-wishes-via-email/letter_templates/letter_3.txt -------------------------------------------------------------------------------- /Automated-birthday-wishes-via-email/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-birthday-wishes-via-email/main.py -------------------------------------------------------------------------------- /Automated-send-motivation_quote_via_email/quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-send-motivation_quote_via_email/quotes.txt -------------------------------------------------------------------------------- /Automated-send-motivation_quote_via_email/send_email_and_datetime_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-send-motivation_quote_via_email/send_email_and_datetime_basic.py -------------------------------------------------------------------------------- /Automated-send-motivation_quote_via_email/send_quote_weekly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Automated-send-motivation_quote_via_email/send_quote_weekly.py -------------------------------------------------------------------------------- /Beautiful-soup-Hacker-News-Website/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-Hacker-News-Website/main.py -------------------------------------------------------------------------------- /Beautiful-soup-Spotify-playlist/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-Spotify-playlist/main.py -------------------------------------------------------------------------------- /Beautiful-soup-Spotify-playlist/token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-Spotify-playlist/token.txt -------------------------------------------------------------------------------- /Beautiful-soup-exercises/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-exercises/basic.py -------------------------------------------------------------------------------- /Beautiful-soup-exercises/website.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-exercises/website.html -------------------------------------------------------------------------------- /Beautiful-soup-top-100-movies-website/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-top-100-movies-website/main.py -------------------------------------------------------------------------------- /Beautiful-soup-top-100-movies-website/must_watch_movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Beautiful-soup-top-100-movies-website/must_watch_movies.txt -------------------------------------------------------------------------------- /Bidder-and-winner/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Bidder-and-winner/.upm/store.json -------------------------------------------------------------------------------- /Bidder-and-winner/__pycache__/art.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Bidder-and-winner/__pycache__/art.cpython-38.pyc -------------------------------------------------------------------------------- /Bidder-and-winner/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Bidder-and-winner/art.py -------------------------------------------------------------------------------- /Bidder-and-winner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Bidder-and-winner/main.py -------------------------------------------------------------------------------- /Bidder-and-winner/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Bidder-and-winner/poetry.lock -------------------------------------------------------------------------------- /Bidder-and-winner/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Bidder-and-winner/pyproject.toml -------------------------------------------------------------------------------- /Blackjack/Blackjack_Flowchart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Blackjack/Blackjack_Flowchart.pdf -------------------------------------------------------------------------------- /Blackjack/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Blackjack/art.py -------------------------------------------------------------------------------- /Blackjack/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Blackjack/main.py -------------------------------------------------------------------------------- /Coffee-machine/Coffee-Machine-Program-Requirements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Coffee-machine/Coffee-Machine-Program-Requirements.pdf -------------------------------------------------------------------------------- /Coffee-machine/__pycache__/menu.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Coffee-machine/__pycache__/menu.cpython-310.pyc -------------------------------------------------------------------------------- /Coffee-machine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Coffee-machine/main.py -------------------------------------------------------------------------------- /Coffee-machine/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Coffee-machine/menu.py -------------------------------------------------------------------------------- /Color-art-turtle-module/generate a Spirograph, circle loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Color-art-turtle-module/generate a Spirograph, circle loop.py -------------------------------------------------------------------------------- /Color-art-turtle-module/generate a random wander turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Color-art-turtle-module/generate a random wander turtle.py -------------------------------------------------------------------------------- /Color-art-turtle-module/print a n-number of sides of polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Color-art-turtle-module/print a n-number of sides of polygon.py -------------------------------------------------------------------------------- /Comprehension-exercises/Dictionary-comprehension/Celsius _to_Fahrenheit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/Dictionary-comprehension/Celsius _to_Fahrenheit.py -------------------------------------------------------------------------------- /Comprehension-exercises/Dictionary-comprehension/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/Dictionary-comprehension/basic.py -------------------------------------------------------------------------------- /Comprehension-exercises/Dictionary-comprehension/split_string_into_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/Dictionary-comprehension/split_string_into_list.py -------------------------------------------------------------------------------- /Comprehension-exercises/List-comprehension/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/List-comprehension/basic.py -------------------------------------------------------------------------------- /Comprehension-exercises/List-comprehension/filtering_even number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/List-comprehension/filtering_even number.py -------------------------------------------------------------------------------- /Comprehension-exercises/List-comprehension/find_same_number_in_both_files/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/List-comprehension/find_same_number_in_both_files/file1.txt -------------------------------------------------------------------------------- /Comprehension-exercises/List-comprehension/find_same_number_in_both_files/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/List-comprehension/find_same_number_in_both_files/file2.txt -------------------------------------------------------------------------------- /Comprehension-exercises/List-comprehension/find_same_number_in_both_files/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/List-comprehension/find_same_number_in_both_files/main.py -------------------------------------------------------------------------------- /Comprehension-exercises/List-comprehension/squaring_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Comprehension-exercises/List-comprehension/squaring_number.py -------------------------------------------------------------------------------- /Exception-handling-exercises/NATO_Phonetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Exception-handling-exercises/NATO_Phonetic.py -------------------------------------------------------------------------------- /Exception-handling-exercises/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Exception-handling-exercises/basic.py -------------------------------------------------------------------------------- /Exception-handling-exercises/index_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Exception-handling-exercises/index_error.py -------------------------------------------------------------------------------- /Exception-handling-exercises/key_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Exception-handling-exercises/key_error.py -------------------------------------------------------------------------------- /Exception-handling-exercises/nato_phonetic_alphabet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Exception-handling-exercises/nato_phonetic_alphabet.csv -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/__main__/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/__main__/main.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/__main__/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/__main__/module1.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/enumerate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/enumerate/main.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/flask/__pycache__/main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/flask/__pycache__/main.cpython-310.pyc -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/flask/main.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/lambda/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/lambda/main.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/map, filter, reduce/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/map, filter, reduce/filter.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/map, filter, reduce/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/map, filter, reduce/main.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/map, filter, reduce/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/map, filter, reduce/map.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/map, filter, reduce/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/map, filter, reduce/reduce.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/python_exercise/idex_of_last_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/python_exercise/idex_of_last_1.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/python_exercise/increment_of_digit_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/python_exercise/increment_of_digit_list.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/python_exercise/zero_reaplcec_to_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/python_exercise/zero_reaplcec_to_5.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/read_file/read_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/read_file/read_file.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/unpack_tuple_&_list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/unpack_tuple_&_list/main.py -------------------------------------------------------------------------------- /Extra Knowledge/intermediate level & method/yield/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/intermediate level & method/yield/main.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/datetime/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/datetime/date.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/openpyxl/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/openpyxl/example.xlsx -------------------------------------------------------------------------------- /Extra Knowledge/modules/openpyxl/read_created_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/openpyxl/read_created_excel.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/openpyxl/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/openpyxl/sample.xlsx -------------------------------------------------------------------------------- /Extra Knowledge/modules/openpyxl/start-up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/openpyxl/start-up.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/openpyxl/write_new_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/openpyxl/write_new_excel.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pandas/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pandas/dataframe.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pandas/descriptive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pandas/descriptive.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pandas/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pandas/series.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/datetime/current_date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/datetime/current_date_time.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/datetime/difference_days.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/datetime/difference_days.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/datetime/number_of_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/datetime/number_of_day.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/event & signal/reimplementing_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/event & signal/reimplementing_event.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/event & signal/signal_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/event & signal/signal_slots.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/layout/absolute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/layout/absolute.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/layout/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/layout/form.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/layout/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/layout/grid.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/layout/horizontal_vertical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/layout/horizontal_vertical.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/check_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/check_menu.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/main_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/main_area.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/right_click_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/right_click_menu.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/simple_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/simple_menu.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/status_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/status_bar.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/submenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/submenu.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/menu & toolbar/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/menu & toolbar/toolbar.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/start_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/start_up.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/tooltip_&_logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/tooltip_&_logo.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/calendar.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/check_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/check_box.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/display_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/display_image.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/drop_down_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/drop_down_list.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/input_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/input_dialog.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/input_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/input_edit.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/max.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/max.jpg -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/med.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/med.jpg -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/min.jpg -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/mute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/mute.jpg -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/progress_bar.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/quit_button_&_message_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/quit_button_&_message_box.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/slider.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/splitter.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/pyqt5/widget/toggle_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/pyqt5/widget/toggle_button.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/request/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/request/get.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/request/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/request/hello.txt -------------------------------------------------------------------------------- /Extra Knowledge/modules/request/response_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/request/response_method.py -------------------------------------------------------------------------------- /Extra Knowledge/modules/selenium/start_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Extra Knowledge/modules/selenium/start_up.py -------------------------------------------------------------------------------- /Flask-server/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flask-server/decorator.py -------------------------------------------------------------------------------- /Flask-server/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flask-server/hello.py -------------------------------------------------------------------------------- /Flight-deals-API/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flight-deals-API/data_manager.py -------------------------------------------------------------------------------- /Flight-deals-API/flight_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flight-deals-API/flight_data.py -------------------------------------------------------------------------------- /Flight-deals-API/flight_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flight-deals-API/flight_search.py -------------------------------------------------------------------------------- /Flight-deals-API/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flight-deals-API/main.py -------------------------------------------------------------------------------- /Flight-deals-API/notification_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Flight-deals-API/notification_manager.py -------------------------------------------------------------------------------- /Google-sheet-workout-tracker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Google-sheet-workout-tracker/main.py -------------------------------------------------------------------------------- /Grading-system/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Grading-system/main.py -------------------------------------------------------------------------------- /Guessing-Number-Game/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Guessing-Number-Game/art.py -------------------------------------------------------------------------------- /Guessing-Number-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Guessing-Number-Game/main.py -------------------------------------------------------------------------------- /Habit-Tracker-with-Pixela-API/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Habit-Tracker-with-Pixela-API/main.py -------------------------------------------------------------------------------- /Hangman-game/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/.upm/store.json -------------------------------------------------------------------------------- /Hangman-game/__pycache__/hangman_art.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/__pycache__/hangman_art.cpython-38.pyc -------------------------------------------------------------------------------- /Hangman-game/__pycache__/hangman_words.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/__pycache__/hangman_words.cpython-38.pyc -------------------------------------------------------------------------------- /Hangman-game/hangman_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/hangman_art.py -------------------------------------------------------------------------------- /Hangman-game/hangman_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/hangman_words.py -------------------------------------------------------------------------------- /Hangman-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/main.py -------------------------------------------------------------------------------- /Hangman-game/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/poetry.lock -------------------------------------------------------------------------------- /Hangman-game/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Hangman-game/pyproject.toml -------------------------------------------------------------------------------- /Higher-lower-game/__pycache__/art.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Higher-lower-game/__pycache__/art.cpython-310.pyc -------------------------------------------------------------------------------- /Higher-lower-game/__pycache__/game_data.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Higher-lower-game/__pycache__/game_data.cpython-310.pyc -------------------------------------------------------------------------------- /Higher-lower-game/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Higher-lower-game/art.py -------------------------------------------------------------------------------- /Higher-lower-game/game_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Higher-lower-game/game_data.py -------------------------------------------------------------------------------- /Higher-lower-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Higher-lower-game/main.py -------------------------------------------------------------------------------- /How-many-days-in-a-month/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/How-many-days-in-a-month/main.py -------------------------------------------------------------------------------- /International-space-station-location/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/International-space-station-location/main.py -------------------------------------------------------------------------------- /Leap-year-generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Leap-year-generator/main.py -------------------------------------------------------------------------------- /Mail-merge-project/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Mail-merge-project/.DS_Store -------------------------------------------------------------------------------- /Mail-merge-project/Input/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Mail-merge-project/Input/.DS_Store -------------------------------------------------------------------------------- /Mail-merge-project/Input/Letters/starting_letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Mail-merge-project/Input/Letters/starting_letter.txt -------------------------------------------------------------------------------- /Mail-merge-project/Input/Names/invited_names.txt: -------------------------------------------------------------------------------- 1 | Aang 2 | Zuko 3 | Appa 4 | Katara 5 | Sokka 6 | Momo 7 | Uncle Iroh 8 | Toph -------------------------------------------------------------------------------- /Mail-merge-project/Output/ReadyToSend/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Mail-merge-project/Output/ReadyToSend/example.txt -------------------------------------------------------------------------------- /Mail-merge-project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Mail-merge-project/main.py -------------------------------------------------------------------------------- /Message-encode-and-decode-generator/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Message-encode-and-decode-generator/.upm/store.json -------------------------------------------------------------------------------- /Message-encode-and-decode-generator/__pycache__/art.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Message-encode-and-decode-generator/__pycache__/art.cpython-38.pyc -------------------------------------------------------------------------------- /Message-encode-and-decode-generator/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Message-encode-and-decode-generator/art.py -------------------------------------------------------------------------------- /Message-encode-and-decode-generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Message-encode-and-decode-generator/main.py -------------------------------------------------------------------------------- /Message-encode-and-decode-generator/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Message-encode-and-decode-generator/poetry.lock -------------------------------------------------------------------------------- /Message-encode-and-decode-generator/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Message-encode-and-decode-generator/pyproject.toml -------------------------------------------------------------------------------- /Miles-to-Kilometers-GUI-converter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Miles-to-Kilometers-GUI-converter/main.py -------------------------------------------------------------------------------- /NATO-alphabet/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/NATO-alphabet/main.py -------------------------------------------------------------------------------- /NATO-alphabet/nato_phonetic_alphabet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/NATO-alphabet/nato_phonetic_alphabet.csv -------------------------------------------------------------------------------- /OOP-coffee-machine/__pycache__/coffee_maker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/__pycache__/coffee_maker.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-coffee-machine/__pycache__/menu.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/__pycache__/menu.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-coffee-machine/__pycache__/money_machine.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/__pycache__/money_machine.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-coffee-machine/coffee_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/coffee_maker.py -------------------------------------------------------------------------------- /OOP-coffee-machine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/main.py -------------------------------------------------------------------------------- /OOP-coffee-machine/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/menu.py -------------------------------------------------------------------------------- /OOP-coffee-machine/money_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-coffee-machine/money_machine.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/__pycache__/item.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/__pycache__/item.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/__pycache__/keyboard.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/__pycache__/keyboard.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/__pycache__/phone.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/__pycache__/phone.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/abstraction_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/abstraction_example.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/item.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/keyboard.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/phone.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-abstraction, polymorphism/polymophism_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-abstraction, polymorphism/polymophism_example.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-bacis-example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-bacis-example/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-class attribute vs instance attribute, __dict__ magic method/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-class attribute vs instance attribute, __dict__ magic method/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-construtor, instance, attribute, method, assert/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-construtor, instance, attribute, method, assert/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-getter & setter, encapsulation/__pycache__/item.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-getter & setter, encapsulation/__pycache__/item.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-getter & setter, encapsulation/__pycache__/phone.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-getter & setter, encapsulation/__pycache__/phone.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-getter & setter, encapsulation/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-getter & setter, encapsulation/item.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-getter & setter, encapsulation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-getter & setter, encapsulation/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-inheritance/__pycache__/item.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-inheritance/__pycache__/item.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-inheritance/__pycache__/phone.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-inheritance/__pycache__/phone.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-exercises/OOP-inheritance/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-inheritance/item.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-inheritance/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-inheritance/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-inheritance/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-inheritance/phone.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-inheritance/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-inheritance/test.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-instantiate from CSV, class method, static method/item.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-instantiate from CSV, class method, static method/item.csv -------------------------------------------------------------------------------- /OOP-exercises/OOP-instantiate from CSV, class method, static method/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-instantiate from CSV, class method, static method/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-save instance into class level list, __repr__ magic method/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-save instance into class level list, __repr__ magic method/main.py -------------------------------------------------------------------------------- /OOP-exercises/OOP-turtle-package/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-exercises/OOP-turtle-package/main.py -------------------------------------------------------------------------------- /OOP-quiz-game/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/.vscode/settings.json -------------------------------------------------------------------------------- /OOP-quiz-game/__pycache__/data.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/__pycache__/data.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-quiz-game/__pycache__/question_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/__pycache__/question_model.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-quiz-game/__pycache__/quiz_brain.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/__pycache__/quiz_brain.cpython-310.pyc -------------------------------------------------------------------------------- /OOP-quiz-game/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/data.py -------------------------------------------------------------------------------- /OOP-quiz-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/main.py -------------------------------------------------------------------------------- /OOP-quiz-game/question_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/question_model.py -------------------------------------------------------------------------------- /OOP-quiz-game/quiz_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/OOP-quiz-game/quiz_brain.py -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-iterate-over-dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-iterate-over-dataframe.py -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-read-column-from-csv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-read-column-from-csv/main.py -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-read-column-from-csv/weather_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-read-column-from-csv/weather_data.csv -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-read-row, mean, max, write-csv-data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-read-row, mean, max, write-csv-data/main.py -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-read-row, mean, max, write-csv-data/new_data.csv: -------------------------------------------------------------------------------- 1 | ,students,scores 2 | 0,Simon,76 3 | 1,Peter,56 4 | 2,Janet,65 5 | -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-read-row, mean, max, write-csv-data/weather_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-read-row, mean, max, write-csv-data/weather_data.csv -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-squirrel-dataset/2018_Central_Park_Squirrel_Census_-_Squirrel_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-squirrel-dataset/2018_Central_Park_Squirrel_Census_-_Squirrel_Data.csv -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-squirrel-dataset/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pandas-exercises/Pandas-squirrel-dataset/main.py -------------------------------------------------------------------------------- /Pandas-exercises/Pandas-squirrel-dataset/squirrel_count.csv: -------------------------------------------------------------------------------- 1 | ,Fur Color,Count 2 | 0,Gray,2473 3 | 1,Cinnamon,392 4 | 2,Black,103 5 | -------------------------------------------------------------------------------- /Pizza-ordering/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pizza-ordering/main.py -------------------------------------------------------------------------------- /Pomodoro-timer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pomodoro-timer/main.py -------------------------------------------------------------------------------- /Pomodoro-timer/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pomodoro-timer/tomato.png -------------------------------------------------------------------------------- /Pong-game/Difference between with inheritance and without inherintance Turtle class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pong-game/Difference between with inheritance and without inherintance Turtle class.png -------------------------------------------------------------------------------- /Pong-game/ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pong-game/ball.py -------------------------------------------------------------------------------- /Pong-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pong-game/main.py -------------------------------------------------------------------------------- /Pong-game/paddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pong-game/paddle.py -------------------------------------------------------------------------------- /Pong-game/scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Pong-game/scoreboard.py -------------------------------------------------------------------------------- /Popcat-autoclicker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Popcat-autoclicker/main.py -------------------------------------------------------------------------------- /Prime-number-generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Prime-number-generator/main.py -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/data.py -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/images/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/images/false.png -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/images/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/images/true.png -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/main.py -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/question_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/question_model.py -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/quiz_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/quiz_brain.py -------------------------------------------------------------------------------- /Quizzler-API-quiz-app-GUI/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Quizzler-API-quiz-app-GUI/ui.py -------------------------------------------------------------------------------- /Random-bill-payer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Random-bill-payer/main.py -------------------------------------------------------------------------------- /Random-password-generator/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Random-password-generator/.upm/store.json -------------------------------------------------------------------------------- /Random-password-generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Random-password-generator/main.py -------------------------------------------------------------------------------- /Rock-paper-scissors/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Rock-paper-scissors/.upm/store.json -------------------------------------------------------------------------------- /Rock-paper-scissors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Rock-paper-scissors/README.md -------------------------------------------------------------------------------- /Rock-paper-scissors/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Rock-paper-scissors/main.py -------------------------------------------------------------------------------- /SMS-Weather-API/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/SMS-Weather-API/data.json -------------------------------------------------------------------------------- /SMS-Weather-API/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/SMS-Weather-API/main.py -------------------------------------------------------------------------------- /Selenium-exercises/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Selenium-exercises/interaction.py -------------------------------------------------------------------------------- /Selenium-exercises/search_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Selenium-exercises/search_element.py -------------------------------------------------------------------------------- /Simple Calculator/__pycache__/art.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Simple Calculator/__pycache__/art.cpython-38.pyc -------------------------------------------------------------------------------- /Simple Calculator/art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Simple Calculator/art.py -------------------------------------------------------------------------------- /Simple Calculator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Simple Calculator/main.py -------------------------------------------------------------------------------- /Sketch-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Sketch-game/main.py -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game-with-higest-score-text-file-record/food.py -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/highest_score_database.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game-with-higest-score-text-file-record/main.py -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/read write file example/my_text.txt: -------------------------------------------------------------------------------- 1 | Hello Simon! 2 | How are you? 3 | Whoohooo -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/read write file example/read_wirte_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game-with-higest-score-text-file-record/read write file example/read_wirte_example.py -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/score_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game-with-higest-score-text-file-record/score_board.py -------------------------------------------------------------------------------- /Snake-game-with-higest-score-text-file-record/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game-with-higest-score-text-file-record/snake.py -------------------------------------------------------------------------------- /Snake-game/__pycache__/food.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/__pycache__/food.cpython-310.pyc -------------------------------------------------------------------------------- /Snake-game/__pycache__/score_board.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/__pycache__/score_board.cpython-310.pyc -------------------------------------------------------------------------------- /Snake-game/__pycache__/screen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/__pycache__/screen.cpython-310.pyc -------------------------------------------------------------------------------- /Snake-game/__pycache__/snake.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/__pycache__/snake.cpython-310.pyc -------------------------------------------------------------------------------- /Snake-game/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/food.py -------------------------------------------------------------------------------- /Snake-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/main.py -------------------------------------------------------------------------------- /Snake-game/score_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/score_board.py -------------------------------------------------------------------------------- /Snake-game/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Snake-game/snake.py -------------------------------------------------------------------------------- /TSLA-stock-tracker-API/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/TSLA-stock-tracker-API/main.py -------------------------------------------------------------------------------- /TSLA-stock-tracker-API/three_articles_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/TSLA-stock-tracker-API/three_articles_layout.py -------------------------------------------------------------------------------- /Tip-calculator/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tip-calculator/.upm/store.json -------------------------------------------------------------------------------- /Tip-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tip-calculator/README.md -------------------------------------------------------------------------------- /Tip-calculator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tip-calculator/main.py -------------------------------------------------------------------------------- /Tkinter-exercises, unlimited arg, kwarg/label,button,entry,layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tkinter-exercises, unlimited arg, kwarg/label,button,entry,layout.py -------------------------------------------------------------------------------- /Tkinter-exercises, unlimited arg, kwarg/optional-arguments/optinal_args_and_kwargs_playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tkinter-exercises, unlimited arg, kwarg/optional-arguments/optinal_args_and_kwargs_playground.py -------------------------------------------------------------------------------- /Tkinter-exercises, unlimited arg, kwarg/optional-arguments/optional_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tkinter-exercises, unlimited arg, kwarg/optional-arguments/optional_args.py -------------------------------------------------------------------------------- /Tkinter-exercises, unlimited arg, kwarg/optional-arguments/optional_kwargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tkinter-exercises, unlimited arg, kwarg/optional-arguments/optional_kwargs.py -------------------------------------------------------------------------------- /Tkinter-exercises, unlimited arg, kwarg/text,spinkbox,scale,checkbox,radio button, listbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Tkinter-exercises, unlimited arg, kwarg/text,spinkbox,scale,checkbox,radio button, listbox.py -------------------------------------------------------------------------------- /Treasure-island-game/.upm/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Treasure-island-game/.upm/store.json -------------------------------------------------------------------------------- /Treasure-island-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Treasure-island-game/README.md -------------------------------------------------------------------------------- /Treasure-island-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Treasure-island-game/main.py -------------------------------------------------------------------------------- /Turtle-crossing-road-game/car_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Turtle-crossing-road-game/car_manager.py -------------------------------------------------------------------------------- /Turtle-crossing-road-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Turtle-crossing-road-game/main.py -------------------------------------------------------------------------------- /Turtle-crossing-road-game/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Turtle-crossing-road-game/player.py -------------------------------------------------------------------------------- /Turtle-crossing-road-game/scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Turtle-crossing-road-game/scoreboard.py -------------------------------------------------------------------------------- /Turtle-run-race-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Turtle-run-race-game/main.py -------------------------------------------------------------------------------- /US-state-quiz-game/50_states.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/US-state-quiz-game/50_states.csv -------------------------------------------------------------------------------- /US-state-quiz-game/States_that_not_guessed_correct.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/US-state-quiz-game/States_that_not_guessed_correct.csv -------------------------------------------------------------------------------- /US-state-quiz-game/blank_states_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/US-state-quiz-game/blank_states_img.gif -------------------------------------------------------------------------------- /US-state-quiz-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/US-state-quiz-game/main.py -------------------------------------------------------------------------------- /Website-image-downloader-example/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Website-image-downloader-example/link.txt -------------------------------------------------------------------------------- /Website-image-downloader-example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonnchong/Python-Projects-and-Exercises/HEAD/Website-image-downloader-example/main.py --------------------------------------------------------------------------------