01 Getting Started With Python
01 Getting Started With Python
Today I know that major chords are built out of: 1st,
3rd and 5th notes of the scale.
Iterative process.
Programming is thinking
The program is part of your brain.
Solve the problem while programming.
Getting Physical
Hand-eye-mind coordination: + +
Alternatives:
>>> help(str)
prints:
class str(object)
| str(object='') -> str
| str(bytes_or_buffer[, encoding[, errors]]) -> str
|
| Create a new string object from the given object. If encodin
| errors is specified, then the object must expose a data buff
| that will be decoded using the given encoding and error hand
...
Programming Work ow
Write -> Run -> Evaluate -> Write -> Run ...
A Programmer's Editor
Programming is about writing commands into a le,
running the code, repeating the process.
First task
Where is my Python?
Why won't it run my program?
Why does this still not work?
print("Hello World!"
print("Hello World!)
print(Hello World!")