Difference between revisions of "SBR600 Python Lab"
(Created page with 'Here is a small Python script: #!/usr/bin/python import random secret=random.randrange(1,100) guess=int(raw_input("Enter a guess: ")) if guess<secret: print "Too…') |
Chris Tyler (talk | contribs) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | [[Category:SBR600 Labs]] | |
− | + | # Login to Matrix | |
− | + | # Clone the "guess" python repository: <code>git clone ~chris.tyler/public/guess</code> | |
− | + | # Modify the script according to the comments at the top | |
− | + | # Blog it! Include your script, the challenges you faced making the modifications, and your impressions of Python | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | # Modify the script | ||
− | # | ||
− | |||
− | |||
− | |||
− |
Latest revision as of 10:28, 3 October 2013
- Login to Matrix
- Clone the "guess" python repository:
git clone ~chris.tyler/public/guess
- Modify the script according to the comments at the top
- Blog it! Include your script, the challenges you faced making the modifications, and your impressions of Python