Software tools needed: terminal (command line), web browser and Python programming environment with numpy and matplotlib packages installed.
import random
The random library includes a function that's similar to range, called randrange. As with range, you can specify the starting, stopping, and step values, and the function randrange chooses a number at random in that range. Some examples:
Notice that our turtle turns a degrees, where a is chosen at random between 0 and 359 degrees. What if your turtle was in a city and had to stay on a grid of streets (and not ramble through buildings)? How can you change the randrange() to choose only from the numbers: 0,90,180,270 (submit your answer as Problem #10).
We have been using for-loops to repeat tasks a fixed number of times (often called a definite loop). There is another type of loop that repeats while a condition holds (called a indefinite loop). The most common is a while-loop.
while condition:
command1
command2
...
commandN
While the condition is true, the block of commands nested under the while statement are repeated.
Work through the textbook's examples of while loops:
For example, let's have a turtles continue their random walk as long as their x and y values are within 50 of the starting point (to keep them from wandering off the screen):
Indefinite loops are useful for simulations (like our simple random walk above) and for validating input. For example, the following code fragment:
age = int(input('Please enter age: '))
while age < 0:
print('Entered a negative number.')
age = int(input('Please enter age: '))
print('You entered your age as:', age)
will ask the user for their age, and continue asking until the number they entered is non-negative (example in pythonTutor).
Another common use of while loops is with sentinel values and validating input. A sentinel value is a flag that indicates a change, usually stopping the loop. Work through the textbook's page:
In Lab 6, we introduced github which can be used to share and store code, websites, etc. (roughly, a "Google Docs" for programs). The website for this course as well as all the programs are stored in repositories (or "repos") at github. For this course, we will only retrieve code from existing repos (in future courses, they will introduce how to share your code and merge your changes with others).
The github site has both a web browser interface (which we used in Lab 6), and the option to use the command line interface to interact with the site.
From Program #35 onward, all sample programs are available at the class repository (repo):
https://github.com/HunterCSci127/CSci127You can access programs by going to the website, or, using the following git command at the command line:
$ git clone https://github.com/HunterCSci127/CSci127
This command will make a copy of all the programs in the class repo in directory called, csci127, in your current working directory.
If you have that directory already and would like to update it with new files that have been (we periodically update the repo), you can 'fetch' the changes:
$ git fetch https://github.com/HunterCSci127/CSci127
In Lab 3, we introduced the shell, or command line, commands to create new directories (folders) and how to list the contents of those folders (and expanded on this with relative paths in Lab 4 and absolute paths in Lab 5). In Lab 6, we wrote a simple script that prints: Hello, World. We can write scripts that take the shell commands we have learned and store them in a file to be used later.
It's a bit archaic, but we can create the file with the vi editor. It dates back to the early days of the Unix operating system. It has the advantage that it's integrated into the Unix operating system and guaranteed to be there. It is worth trying at least once (so if you're in a bind and need to edit Unix files remotely, you can), but if you hate it (which is likely), after you've tried it this once you can go back to an editor with graphical interface.
Let's create a simple shell script with vi:
#Your name here
#October 2024
#Shell script: creates directories for project
mkdir projectFiles
cd projectFiles
mkdir source
mkdir data
mkdir results
chmod +x setupProject
(changes the "mode" to be executable).
./setupProject
Troubles with vi? It's not intuitive-- here's more on vi:
If you hate vi, just edit using gEdit in Linux, TextEdit in OSX, notepad in Windows or IDLE.You can start working on this week's programming assignments. The Programming Problem List has problem descriptions, suggested reading, and due dates next to each problem. You should aim to finish the programs in the next week, although the deadlines are several weeks out, to give a buffer just in case.