-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
28 lines (24 loc) · 771 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Matt Harrison
# Has several python books
# Tiny Python 3/6 notebook - free online (see below)
# Often teaches classes for companies switching to Python
# teaches experienced coders to be proficient in Python in several days
# http://bit.ly/openwest-py-17
# https://github.com/mattharrison/Tiny-Python-3.6-Notebook
# https://pypi.python.org/pypi - python package index
# D - Decide
# R - Relax
# M - Motivation
# O - Observation
# M - Mechanics
# python3 -m idlelib.idle
# -m find module
# idle is a text editor
# Markov Chain
# REPL - read, evaluate, print, loop
# PEP 8 - conventions for Python coding
# dir() - lets you know what's in directory
# dir(print) - lets you know the methods of the print function
""" triple quoted string
can span multiple lines
"""