From 8cc8e43b42e8101e25002f668dd2f5157468ff42 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Mon, 27 Jul 2020 11:31:27 -0700 Subject: [PATCH 01/11] Try to fix colorama on bare windows. --- .../10-external-libraries/rocks-game/rpsgame.py | 17 +++++++++++++++++ code/11-error-handling/rocks-game/rpsgame.py | 6 ++++++ 2 files changed, 23 insertions(+) diff --git a/code/10-external-libraries/rocks-game/rpsgame.py b/code/10-external-libraries/rocks-game/rpsgame.py index 213097d..ece7085 100644 --- a/code/10-external-libraries/rocks-game/rpsgame.py +++ b/code/10-external-libraries/rocks-game/rpsgame.py @@ -1,8 +1,21 @@ +################################# +# +# NOTE TO WINDOWS USERS: Please see the following github issue +# if you find weird characters instead color from colorama: +# +# https://github.com/talkpython/python-for-absolute-beginners-course/issues/7 +# +# Apparently, even though it's supposed to adjust automatically, it doesn't always. +# We've added a test to force it to do so at the beginning of main(). +# + import datetime import random import json import os +import platform +import colorama from colorama import Fore from prompt_toolkit import prompt from prompt_toolkit.completion import WordCompleter, Completer, Completion @@ -11,6 +24,10 @@ def main(): + # See comment at top of file. + if platform.system() == 'Windows': + colorama.init(convert=True) + print(Fore.WHITE) log("App starting up...") diff --git a/code/11-error-handling/rocks-game/rpsgame.py b/code/11-error-handling/rocks-game/rpsgame.py index c3448c1..a62d336 100644 --- a/code/11-error-handling/rocks-game/rpsgame.py +++ b/code/11-error-handling/rocks-game/rpsgame.py @@ -1,8 +1,10 @@ import datetime +import platform import random import json import os +import colorama from colorama import Fore rolls = {} @@ -10,6 +12,10 @@ def main(): try: + # See comment at top of the rpsgame.py in CHAPTER 10. + if platform.system() == 'Windows': + colorama.init(convert=True) + print(Fore.WHITE) log("App starting up...") From 8a6a41f3a1bb6c9c4cc44f7edaefd5aebf44f3f7 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Tue, 22 Sep 2020 14:37:22 -0700 Subject: [PATCH 02/11] Add more details about the course to the readme. --- README.md | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 100 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 430b589..326ebdc 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,106 @@ ![](readme_resources/absolute-beginners.jpg) -Code samples and other handouts for our course. +Code samples and other handouts for our course. See the [**practice exercises**](/practices) for following along with the course. -See the [practice exercises](/practices). +## Course Summary + +Learning to program can be overwhelming. Concepts and facts come at you fast and most courses don't cover many of them at all or at a beginner's pace. **This is not most courses**. Python for absolute beginners is our premier course for beginning developers. We start at the very beginning, teaching you the big ideas and concepts covered in a CS 101 course. Then we move on to writing increasingly complex code and applications in Python. + + + +## What students are saying + +Python for Beginners was really well done, I have CodeAcademy and LinkedIn Learning (not bad mouthing them) but until I had your program I was really struggling. Course curriculum is very good. Thanks for putting this together. + + + +## What's this course about and how is it different? + +Most courses teach you the *facts* of programming and Python. Here is +how a loop is constructed. Here is how you test a condition and make +your program choose one path or another. Often they assume that you are +familiar with programming concepts such as data types, loops, functions, +and so on and that you just need to learn the details of how to do this in +Python. + +**This course is not most courses**. If you want ground up coverage of +software development using Python as the technology, this is your course! + +We spend significant time setting the stage to make sure you have +the big concepts clearly covered before diving into writing code. We +explicitly discuss how to approach problem solving when writing code +so that you don't have that *deer in the headlines* feeling. + +And the course content isn't just facts. You will see a lot of code +written before your eyes. That code isn't boring `foo()` this and +`bar()` that. **We build several fun and challenging games covering a wide +range of topics** that will be entirely relevant to your professional +projects. + +If you never had that formal computer science background but need to +jump into programming and Python, this course has your back. + + + +## What topics are covered + +In this course, you will: + +* Learn how to install Python and a proper editor to write code on your computer. +* See a quick, high-level overview of the *big ideas* of computer programming (e.g. data structures). +* Understand how Python executes a program and turns what you write into executable software. +* See how Python defines data types (integers, strings, etc.) and how to convert between them. +* Create interactive code that has a *conversation* with the user or data. +* Use functions to make your code more maintainable and reusable. +* Choose the right data structure to significantly improve the clarity and performance of your code. +* Create a basic AI / computer opponent for the games built during the course. +* Learn many problem solving techniques to help you dive right into writing code productively. +* See resources to help visualize connections between data created by your code. +* Work with multiple file formats to read and write data as our program runs. +* Use external libraries from [pypi.org](https://pypi.org). +* Add error handling to your application for a polished, reliable application. +* And lots more + +View the full [course outline](https://training.talkpython.fm/courses/explore_beginners/python-for-absolute-beginners#course_outline). + + + + +## Who is this course for? + +This course is for **anyone who wants to learn Python and computer programming**. If you haven't had a formal education in software development or have tried other courses and programming "didn't stick", then you are a great candidate student. + +The student requirements are quite light for this course. You'll need: + +* Basic typing skills +* Foundational computer experience (installing software etc.) +* A simple computer (macOS, Windows, or Linux) +* A desire to learn programming + +**Note**: All software used during this course, including editors, Python language, etc., are 100% free and open source. You won't have to buy anything to take the course. + + + + +## What games will we build? + +I believe it's important to learn programming in the context of something that feels plausible and real. We won't build a bunch of disconnected loops and other programming examples that don't relate back to real programs. We will build several fun games that cover meaningful content that any elementary +Python course would cover. + +1. **Guess the number of M&Ms in a jar** +2. **TIC-TAC-TOE** +3. **Rock-Paper-Scissors (3-way and 7-way)** +4. **A Connect4 clone** + + + +## The time to act is now + +If you've always wanted to learn programming and are considering Python as your gateway into that world, this is the course for you. We will fill in the concepts that would normally be covered in a CS 101 course without wasting your time taking semesters to cover what can be learned and practiced in a week or two. + +Dive into Python and become a software developer with this course. Join today! You've got nothing to lose. Every one of our courses comes with a 2-week money-back guarantee. + +Visit the [**course page to sign up**](https://training.talkpython.fm/courses/explore_beginners/python-for-absolute-beginners). From 0d89e43df486bbc4aed60dfdd68256a5e6e73dff Mon Sep 17 00:00:00 2001 From: amcinnes87 <75340385+amcinnes87@users.noreply.github.com> Date: Sun, 6 Dec 2020 13:48:40 -0800 Subject: [PATCH 03/11] Fix code to pass string literal to float() instead of int() Triggers an exception when you call `int("7.2")`. --- practices/ch04_first_lines/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practices/ch04_first_lines/readme.md b/practices/ch04_first_lines/readme.md index 7fbb3ba..65268ef 100644 --- a/practices/ch04_first_lines/readme.md +++ b/practices/ch04_first_lines/readme.md @@ -55,8 +55,8 @@ Data is converted to numerical types using the type name (int, float, etc). Here ```python text = '7.2' -whole_number = int(text) # value = 7 number = float(text) # value = 7.2 +whole_number = int(number) # value = 7 ``` ## Exercises From 7e0b1a1d066dfc39a84e1e2933c3046e534f6e35 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Tue, 28 Dec 2021 14:25:54 -0800 Subject: [PATCH 04/11] Ignore these pycharm files. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index d8f641b..01b4deb 100644 --- a/.gitignore +++ b/.gitignore @@ -131,3 +131,5 @@ misc.xml .idea/inspectionProfiles/profiles_settings.xml .idea/inspectionProfiles/Project_Default.xml mkennedy.xml +code/08-problem-solving/tictactoe/.idea/tictactoe.iml +code/08-problem-solving/tictactoe/.idea/inspectionProfiles/Project_Default.xml From 83c18e082c0e90bbca34fd12e315739879d6b4bd Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Tue, 28 Dec 2021 19:07:24 -0800 Subject: [PATCH 05/11] Ignore some of these files. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 01b4deb..c027ab9 100644 --- a/.gitignore +++ b/.gitignore @@ -133,3 +133,5 @@ misc.xml mkennedy.xml code/08-problem-solving/tictactoe/.idea/tictactoe.iml code/08-problem-solving/tictactoe/.idea/inspectionProfiles/Project_Default.xml +code/07-data-structures/rocks-game/rolls.json +code/09-working-with-files/rocks-game/requirements.txt From 5ade083397321a6e8d20dc2ccde0e667006dc986 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Tue, 28 Dec 2021 19:14:29 -0800 Subject: [PATCH 06/11] Brighter whites --- code/11-error-handling/rocks-game/rpsgame.py | 26 ++++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/code/11-error-handling/rocks-game/rpsgame.py b/code/11-error-handling/rocks-game/rpsgame.py index a62d336..39fcbf0 100644 --- a/code/11-error-handling/rocks-game/rpsgame.py +++ b/code/11-error-handling/rocks-game/rpsgame.py @@ -16,7 +16,7 @@ def main(): if platform.system() == 'Windows': colorama.init(convert=True) - print(Fore.WHITE) + print(Fore.LIGHTWHITE_EX) log("App starting up...") show_header() @@ -30,17 +30,17 @@ def main(): log("Game over.") except json.decoder.JSONDecodeError as je: print() - print(Fore.LIGHTRED_EX + "ERROR: The file rolls.json is invalid JSON." + Fore.WHITE) - print(Fore.LIGHTRED_EX + f"ERROR: {je}" + Fore.WHITE) + print(Fore.LIGHTRED_EX + "ERROR: The file rolls.json is invalid JSON." + Fore.LIGHTWHITE_EX) + print(Fore.LIGHTRED_EX + f"ERROR: {je}" + Fore.LIGHTWHITE_EX) except FileNotFoundError as fe: print() - print(Fore.LIGHTRED_EX + "ERROR: Rolls file not found" + Fore.WHITE) - print(Fore.LIGHTRED_EX + f"ERROR: {fe}" + Fore.WHITE) + print(Fore.LIGHTRED_EX + "ERROR: Rolls file not found" + Fore.LIGHTWHITE_EX) + print(Fore.LIGHTRED_EX + f"ERROR: {fe}" + Fore.LIGHTWHITE_EX) except KeyboardInterrupt: print() - print(Fore.LIGHTCYAN_EX + "You gotta run? Ok, cya next time!" + Fore.WHITE) + print(Fore.LIGHTCYAN_EX + "You gotta run? Ok, cya next time!" + Fore.LIGHTWHITE_EX) except Exception as x: - print(Fore.LIGHTRED_EX + f"Unknown error: {x}" + Fore.WHITE) + print(Fore.LIGHTRED_EX + f"Unknown error: {x}" + Fore.LIGHTWHITE_EX) def show_header(): @@ -49,7 +49,7 @@ def show_header(): print(" Rock Paper Scissors") print(" Error Handling Edition") print("---------------------------") - print(Fore.WHITE) + print(Fore.LIGHTWHITE_EX) def show_leaderboard(): @@ -86,13 +86,13 @@ def play_game(player_1, player_2): if not roll1: print(Fore.LIGHTRED_EX + "Try again!") - print(Fore.WHITE) + print(Fore.LIGHTWHITE_EX) continue log(f"Round: {player_1} roll {roll1} and {player_2} rolls {roll2}") print(Fore.YELLOW + f"{player_1} rolls {roll1}") print(Fore.LIGHTBLUE_EX + f"{player_2} rolls {roll2}") - print(Fore.WHITE) + print(Fore.LIGHTWHITE_EX) winner = check_for_winning_throw(player_1, player_2, roll1, roll2) @@ -103,7 +103,7 @@ def play_game(player_1, player_2): else: msg = f'{winner} takes the round!' fore = Fore.GREEN if winner == player_1 else Fore.LIGHTRED_EX - print(fore + msg + Fore.WHITE) + print(fore + msg + Fore.LIGHTWHITE_EX) log(msg) wins[winner] += 1 @@ -115,7 +115,7 @@ def play_game(player_1, player_2): overall_winner = find_winner(wins, wins.keys()) fore = Fore.GREEN if overall_winner == player_1 else Fore.LIGHTRED_EX msg = f"{overall_winner} wins the game!" - print(fore + msg + Fore.WHITE) + print(fore + msg + Fore.LIGHTWHITE_EX) log(msg) record_win(overall_winner) @@ -162,7 +162,7 @@ def get_roll(player_name, roll_names): return roll_names[selected_index] except ValueError as ve: - print(Fore.RED + f"Could not convert to integer: {ve}" + Fore.WHITE) + print(Fore.RED + f"Could not convert to integer: {ve}" + Fore.LIGHTWHITE_EX) return None From 98007d7d6a62ae163bbb8c685457af9fae3b28f2 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Mon, 3 Jan 2022 11:34:46 -0800 Subject: [PATCH 07/11] delete these pycharm files --- code/05-interactive-code/m-n-m/.idea/.gitignore | 2 -- code/05-interactive-code/m-n-m/.idea/.name | 1 - code/05-interactive-code/m-n-m/.idea/M&M Guessing.iml | 10 ---------- .../.idea/inspectionProfiles/profiles_settings.xml | 6 ------ code/05-interactive-code/m-n-m/.idea/misc.xml | 4 ---- code/05-interactive-code/m-n-m/.idea/modules.xml | 8 -------- code/05-interactive-code/m-n-m/.idea/vcs.xml | 6 ------ .../rocks-game/.idea/.gitignore | 2 -- .../rocks-game/.idea/.name | 1 - .../rocks-game/.idea/RPS Functions.iml | 10 ---------- .../.idea/inspectionProfiles/profiles_settings.xml | 6 ------ .../rocks-game/.idea/misc.xml | 4 ---- .../rocks-game/.idea/modules.xml | 8 -------- .../rocks-game/.idea/vcs.xml | 6 ------ 14 files changed, 74 deletions(-) delete mode 100644 code/05-interactive-code/m-n-m/.idea/.gitignore delete mode 100644 code/05-interactive-code/m-n-m/.idea/.name delete mode 100644 code/05-interactive-code/m-n-m/.idea/M&M Guessing.iml delete mode 100644 code/05-interactive-code/m-n-m/.idea/inspectionProfiles/profiles_settings.xml delete mode 100644 code/05-interactive-code/m-n-m/.idea/misc.xml delete mode 100644 code/05-interactive-code/m-n-m/.idea/modules.xml delete mode 100644 code/05-interactive-code/m-n-m/.idea/vcs.xml delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/.gitignore delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/.name delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/RPS Functions.iml delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/inspectionProfiles/profiles_settings.xml delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/misc.xml delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/modules.xml delete mode 100644 code/06-organizing-code-with-functions/rocks-game/.idea/vcs.xml diff --git a/code/05-interactive-code/m-n-m/.idea/.gitignore b/code/05-interactive-code/m-n-m/.idea/.gitignore deleted file mode 100644 index 5c98b42..0000000 --- a/code/05-interactive-code/m-n-m/.idea/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Default ignored files -/workspace.xml \ No newline at end of file diff --git a/code/05-interactive-code/m-n-m/.idea/.name b/code/05-interactive-code/m-n-m/.idea/.name deleted file mode 100644 index dcf0a95..0000000 --- a/code/05-interactive-code/m-n-m/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -M&M Guessing \ No newline at end of file diff --git a/code/05-interactive-code/m-n-m/.idea/M&M Guessing.iml b/code/05-interactive-code/m-n-m/.idea/M&M Guessing.iml deleted file mode 100644 index 4bb64fc..0000000 --- a/code/05-interactive-code/m-n-m/.idea/M&M Guessing.iml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/code/05-interactive-code/m-n-m/.idea/inspectionProfiles/profiles_settings.xml b/code/05-interactive-code/m-n-m/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/code/05-interactive-code/m-n-m/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/code/05-interactive-code/m-n-m/.idea/misc.xml b/code/05-interactive-code/m-n-m/.idea/misc.xml deleted file mode 100644 index a811725..0000000 --- a/code/05-interactive-code/m-n-m/.idea/misc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/code/05-interactive-code/m-n-m/.idea/modules.xml b/code/05-interactive-code/m-n-m/.idea/modules.xml deleted file mode 100644 index 4943257..0000000 --- a/code/05-interactive-code/m-n-m/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/code/05-interactive-code/m-n-m/.idea/vcs.xml b/code/05-interactive-code/m-n-m/.idea/vcs.xml deleted file mode 100644 index c2365ab..0000000 --- a/code/05-interactive-code/m-n-m/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/.gitignore b/code/06-organizing-code-with-functions/rocks-game/.idea/.gitignore deleted file mode 100644 index 5c98b42..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Default ignored files -/workspace.xml \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/.name b/code/06-organizing-code-with-functions/rocks-game/.idea/.name deleted file mode 100644 index 36f3bc5..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -RPS Functions \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/RPS Functions.iml b/code/06-organizing-code-with-functions/rocks-game/.idea/RPS Functions.iml deleted file mode 100644 index 4deaec0..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/RPS Functions.iml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/inspectionProfiles/profiles_settings.xml b/code/06-organizing-code-with-functions/rocks-game/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/misc.xml b/code/06-organizing-code-with-functions/rocks-game/.idea/misc.xml deleted file mode 100644 index 55b4798..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/misc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/modules.xml b/code/06-organizing-code-with-functions/rocks-game/.idea/modules.xml deleted file mode 100644 index 66e2a58..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/code/06-organizing-code-with-functions/rocks-game/.idea/vcs.xml b/code/06-organizing-code-with-functions/rocks-game/.idea/vcs.xml deleted file mode 100644 index c2365ab..0000000 --- a/code/06-organizing-code-with-functions/rocks-game/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From c14e1669605c7cc4b79abca3ae60f3df759e0433 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Mon, 3 Jan 2022 11:35:12 -0800 Subject: [PATCH 08/11] Ignore these pycharm files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index c027ab9..05ebd69 100644 --- a/.gitignore +++ b/.gitignore @@ -135,3 +135,5 @@ code/08-problem-solving/tictactoe/.idea/tictactoe.iml code/08-problem-solving/tictactoe/.idea/inspectionProfiles/Project_Default.xml code/07-data-structures/rocks-game/rolls.json code/09-working-with-files/rocks-game/requirements.txt +code/07-data-structures/simple_dict/.idea/simple_dict.iml +code/07-data-structures/simple_dict/.idea/inspectionProfiles/Project_Default.xml From 0d01c89284e2365cd0114802554484cc82a4f202 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Tue, 4 Jan 2022 20:06:52 -0800 Subject: [PATCH 09/11] Ignore this pycharm file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 05ebd69..13765a5 100644 --- a/.gitignore +++ b/.gitignore @@ -137,3 +137,4 @@ code/07-data-structures/rocks-game/rolls.json code/09-working-with-files/rocks-game/requirements.txt code/07-data-structures/simple_dict/.idea/simple_dict.iml code/07-data-structures/simple_dict/.idea/inspectionProfiles/Project_Default.xml +workspace.xml From 579194196e768327e89a32c66337386d90718058 Mon Sep 17 00:00:00 2001 From: kofilpy <109137758+kofilpy@users.noreply.github.com> Date: Mon, 7 Nov 2022 21:39:58 +0200 Subject: [PATCH 10/11] add "in" into sentence I --- practices/ch07_data_structures/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practices/ch07_data_structures/readme.md b/practices/ch07_data_structures/readme.md index 95297aa..0d4486b 100644 --- a/practices/ch07_data_structures/readme.md +++ b/practices/ch07_data_structures/readme.md @@ -10,7 +10,7 @@ Remember, these are for your own benefit. Feel free to skip them if you don't fi ### Creating a static dictionary -You can create a dictionary a number of ways. How you do this depends on how much data is static and how much is dynamic as part of the program's execution. +You can create a dictionary in a number of ways. How you do this depends on how much data is static and how much is dynamic as part of the program's execution. ```python # Static data styles: From f3d4ea5656e06fc1b588156f396f54102a4cf1d4 Mon Sep 17 00:00:00 2001 From: Michael Kennedy Date: Thu, 21 Dec 2023 16:28:06 -0800 Subject: [PATCH 11/11] ignore pycharm files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 13765a5..c742bdd 100644 --- a/.gitignore +++ b/.gitignore @@ -138,3 +138,5 @@ code/09-working-with-files/rocks-game/requirements.txt code/07-data-structures/simple_dict/.idea/simple_dict.iml code/07-data-structures/simple_dict/.idea/inspectionProfiles/Project_Default.xml workspace.xml + +.idea/