-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,11 +1,22 @@ | ||
Learning Objectives | ||
### Learning Objectives | ||
At the end of this project, you are expected to be able to explain to anyone, without the help of Google: | ||
|
||
General | ||
### General | ||
Why Python programming is awesome | ||
How to import functions from another file | ||
How to use imported functions | ||
How to create a module | ||
How to use the built-in function dir() | ||
How to prevent code in your script from being executed when imported | ||
How to use command line arguments with your Python programs | ||
How to use command line arguments with your Python programs | ||
|
||
## Python Scripts | ||
Allowed editors: vi, vim, emacs | ||
All your files will be interpreted/compiled on Ubuntu 20.04 LTS using python3 (version 3.8.5) | ||
All your files should end with a new line | ||
The first line of all your files should be exactly #!/usr/bin/python3 | ||
A README.md file at the root of the repo, containing a description of the repository | ||
A README.md file, at the root of the folder of this project, is mandatory | ||
Your code should use the pycodestyle (version 2.8.*) | ||
All your files must be executable | ||
The length of your files will be tested using wc |