Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mark Sheldon
lab3
Commits
2a19f9ee
Commit
2a19f9ee
authored
Feb 05, 2018
by
Margaret Gorguissian
Browse files
lab 3 files
parents
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
lab3.html
0 → 100644
View file @
2a19f9ee
This diff is collapsed.
Click to expand it.
pat.py
0 → 100644
View file @
2a19f9ee
# pat.py
# COMP 0011 Lab 3
# Prints a pattern, v1.0 is 7 lines of snow.
# Edited by:
# Date:
import
sys
def
main
(
args
):
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
print
(
"SNOW--SNOW--SNOW--SNOW--"
)
if
__name__
==
"__main__"
:
main
(
sys
.
argv
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment