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
- Host: GitHub
- URL: https://github.com/nowdoc/2016-python-class-1
- Owner: nowdoc
- Created: 2016-02-29T11:12:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-11T15:07:41.000Z (about 10 years ago)
- Last Synced: 2025-02-14T21:41:19.862Z (over 1 year ago)
- Topics: learning, python
- Language: Python
- Homepage:
- Size: 493 KB
- Stars: 5
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`