An open API service indexing awesome lists of open source software.

https://github.com/nowdoc/2016-python-class-1

:bowtie: Introduction to Python, Curses and PyGames
https://github.com/nowdoc/2016-python-class-1

learning python

Last synced: over 1 year ago
JSON representation

:bowtie: Introduction to Python, Curses and PyGames

Awesome Lists containing this project

README

          

# Python Class #1

Introduction to Python, Curses and PyGames

## Content

### [01 - Python intro](https://github.com/czechcode/python-class-1/blob/master/src/01-python)

### [02 - Python syntax](https://github.com/czechcode/python-class-1/blob/master/src/02-syntax)

### [03 - Pygame](https://github.com/czechcode/python-class-1/blob/master/src/03-pygame)

## Documentation

- [Python 3.5.1](https://docs.python.org/3.5/)
- [PyGame 1.9.2](http://www.pygame.org/docs/)

## Examples

- http://www.balloonbuilding.com/index.php?chapter=example_code
- http://pygame.org/tags/example
- http://www.pygame.org/docs/ref/examples.html

## Console

> Only for Windows users!

Here is a short script for starting python scripts from anywhere.

```sh
set PATH=%PATH%;D:\Folder\other\python
start
```

Replace `D:\Folder\other\python` with your absolute path to python.

Without adding python to your Windows PATH enviroment, you have to
run scripts with absolute paths.

### From python folder

`python.exe D:\code\main.py`

### From codes

`D:\Folder\other\python\python.exe main.py`