# wtfiswronghere **Repository Path**: shellyan/wtfiswronghere ## Basic Information - **Project Name**: wtfiswronghere - **Description**: A collection of simple errors that beginners are likely to hit when they start writing Python. - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-13 - **Last Updated**: 2020-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Improve your Python by fixing errors We present small code samples that have errors in them. Initially, there is only one error and it is relatively easy to spot. As we move up challenges, there are multiple errors and subtle bugs. ### Why do this at all? By working through these examples, we hope you get better at: * reading errors * debugging * reading and editing other people's code * Googling for specific issues * solving errors on your own ### Motivation for creating this repository We noticed that people learning new programming languages lack some foundational skills like the ability to read errors, the knowledge to self-correct their own mistakes, the skill to limit their attention to only the relevant lines of code, etc. This repository is a collection of simple errors that beginners are likely to hit when they start to write Python code. Our idea is to present exercises in which beginners can experience errors and try to solve them on their own. This repository has been created and maintained by [Qxf2 Services](https://www.qxf2.com/?utm_source=wftiswronghere&utm_medium=click&utm_campaign=From%20github). Qxf2 provides QA consultancy services for startups. ### How to use this repository We suggest you do the following 1. [Fork](https://qxf2.com/blog/github-workflow-contributing-code-using-fork/) this repository 2. In your terminal prompt (git bash, command prompt, etc.), navigate to each challenge directory (e.g.: `01_challenge`) 3. Run the one Python script in the challenge directory (`python 01_challenge.py`) 4. It should throw an error that reads similar to the `.png` in the challenge directory 5. Fix the error and rerun 6. If all goes good, you should see the output of running fizz buzz 7. Once you fix the issue, update the readme file in the challenge directory (`01_readme.md`) with: a. what part of the error message gave you a clue b. how you set about solving the issue (e.g.: I Googled) c. summarize what you learned. 8. Don't forget to commit your fixed code and updated readme 9. __Pro tip:__ Once you are setup, try your best to timebox each exercise to no more than 10-minutes. We recommend this tip for even rank beginners who know nearly nothing about Python! NOTE: To get the most out of these exercises, we think beginners should use an IDE (e.g.: Visual Studio Code), use git and use one git branch per challenge. These are peripheral habits to the main exercises but they will go a long way in making you more comfortable in working with code.