phillipdwright / free-python-course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Travis status

Introduction to Programming with Python

Coding, as any other skill in life, is built upon experience. Would you say you can become a great basketball player by just watching the NBA? You probably wouldn't. In the same sense, you can't be a good programmer by watching programming videos or reading about programming languages. If you want to be a great programmer you have to sit down and start coding. There's not other way.

This course will take you through the fundamentals of programming building from the very basics (Data Types, Collections, Control Flow) and introducing you to more advanced concepts as Object Oriented Programming. To be able to take this course, you're required to have some basic knowledge of programming. So we can pick from there and take you to the next level. If you have no experience, we recommend you to start with Programming for Everybody or the Codecademy Python Course.

This course is perfect for you if:

  • You've been reading about programming but you don't know the concepts of programming behind.
  • You feel like you are not making progress. You want to code, but you don't know how to start.
  • You get stuck easily and you don't know how to get unstuck, how to debug your error or find help.
  • You need other people to surround you and encourage you to learn so you don't end up procrastinating.

Development

To run all the tests for the assignment lesson use the run_tests.py script. Examples:

$ python run_tests.py                   # Run all tests
$ python run_tests.py  -v               # Run all tests including logging info
$ python run_tests.py -u 1              # Run tests just for the unit 1
$ python run_tests.py -u 5 8            # Run tests just for units 5 and 8
$ python run_tests.py -g string         # Run tests for lessons that contain the
                                        # keyword 'string' in their name
$ python run_tests.py -g string length  # Run tests for lessons that contain
                                        # the keywords 'string' and 'length' in their name

License

This content is released under the CC BY-SA 4.0 Creative Commons license.

About

License:Creative Commons Attribution Share Alike 4.0 International


Languages

Language:Python 100.0%