Last active
August 29, 2015 14:05
-
-
Save christophergregory/7a11613fbf17a40da40f to your computer and use it in GitHub Desktop.
Python 101 - Assignment 1 Starter
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
# Assignment 1 - Building a star pyramid | |
# Ask the user to enter a number | |
number_of_rows = int(raw_input('Enter a number: ')) | |
# Write your code below this comment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment