# Learning Python From Scratch Python is, as Wikipedia goes, a powerful *general-purpose high-level programming language*. It basically means that it can be used to write a wide variety of different kinds of software, from videogames to HTTP servers to command-line tools. One of the main characteristics that differentiates Python from other programming languages is its strong emphasis on readability and code cleaness. In fact, differently from other languages like JavaScript or C++, in Python code indentation has a syntactical meaning and you are forced to chose and adhere to a writing style (e.g. don't mix *tabs* and *spaces* for identation; don't use two spaces where you should use four etc.). Yes, forced: the Python interpreter will raise SyntaxErrors if it recognize wrong indentation. This might look like a limit at the beginning but, as you will advance in your learning path, you'll realize that enforcing this behaviour will make your code slim and more readable by default. For its own nature, exercism assumes that you already have a grasp of the language syntax before starting doing exercises. At least at a point where you can write simple functions in Python. From there on, you can continue your learning as you will advance in the exercism track and gradually explore new constructs and concepts. With this premise, a good, beginner friendly, starting point for those who don't have any experience in other languages might be the Python course on [Codecademy.com](https://www.codecademy.com/). It will help you get an understanding of the Python syntax with which you will be able to start solving exercises here on exercism. ## Other Resources - [Automate the Boring Stuff with Python (Book)](https://automatetheboringstuff.com/) - [Python3 Beginner Tutorial](https://www.youtube.com/playlist?list=PL1A2CSdiySGJd0LJRRSwQZbPZaDP0q67j) - [Learn Python The Hard Way (Book)](http://learnpythonthehardway.org/book/) - [Offical Python3 **Documentation** and **Reference**](https://docs.python.org/3/) - [Learn X in Y minutes (where X = Python3)](https://learnxinyminutes.com/docs/python3/) - [The Hitchhiker’s Guide to Python](http://docs.python-guide.org/en/latest/) - [PyCharm EDU **IDE** and **Courses**](https://www.jetbrains.com/pycharm-edu/)