-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rick Copeland <[email protected]>
- Loading branch information
Showing
10 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print 'importing mypackage' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print 'importing mypackage.mysubpackage' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print 'importing mypackage.mysubpackage.mymodule' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import mypackage | ||
|
||
print mypackage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import mypackage.mysubpackage | ||
|
||
print 'mypackage is', mypackage | ||
print 'mypackage.mysubpackage is', mypackage.mysubpackage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from mypackage.mysubpackage import mymodule | ||
|
||
print 'mymodule is', mymodule |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Fast Track to Python | ||
|
||
- [Slides][slides] | ||
- [Code][code] | ||
|
||
## Day 1 notes | ||
|
||
- [Basic Python Syntax][01-basic-syntax] | ||
- [Builtin Functions][02-builtins] | ||
- [File I/O][03-fileio] | ||
- [Using Modules][04-modules] | ||
- [Strings][05-strings] | ||
- [Regular Expressions][06-regex] | ||
|
||
[slides]: ./FastTrackToPython.pdf | ||
[code]: ./code/fasttracktopython/ | ||
[01-basic-syntax]: ./01-BasicPythonSyntax.html | ||
[02-builtins]: ./02-Builtins.html | ||
[03-fileio]: ./03-FileIO.html | ||
[04-modules]: ./04-Modules.html | ||
[05-strings]: ./05-Strings.html | ||
[06-regex]: ./06-Regex.html |