python3
>>> a = 5 >>> a += 1 >>> a >>> a += 4 >>> a >>> a -= 2 >>> a >>> a *= 2 >>> a >>> a //= 3 >>> a >>> a %= 3 >>> a >>> a **= 3
>>> def print_umb_address(): ... print("University of Massachusetts at Boston") ... print("100 Morrissey Boulevard") ... print("Boston, Massachusetts 02125-3393")
print_umb_address()
>>> def cheer(team): ... print("Go " + team + "!")
cheer("Red Sox")
a: 7 a: 8 a: 12 a: 10 a: 20 a: 6 a: 0 University of Massachusetts at Boston 100 Morrissey Boulevard Boston, Massachusetts 02125-3393 Go Red Sox! Go Patriots! Go Bruins! Go Celtics! Please enter your Name: Glenn Hoffman Name: Glenn Hoffman Please enter your Address: 40 Central Street Address: 40 Central Street Please enter your City/State: Somerville, Massachusetts City/State: Somerville, Massachusetts Please enter your Phone: 617-821-3936 Phone: 617-821-3936 Email: Glenn.Hoffman@umb.eduYou do not have to use the values I have shown above.
cd it116
cd ex
mkdir ex11
ls
cd it116/ex/ex11
python3 ex11.py
a: 7 a: 8 a: 12 a: 10 a: 20 a: 6 a: 0 University of Massachusetts at Boston 100 Morrissey Boulevard Boston, Massachusetts 02125-3393 Go Red Sox! Go Patriots! Go Bruins! Go Celtics! Please enter your Name: Glenn Hoffman Name: Glenn Hoffman Please enter your Address: 40 Central Street Address: 40 Central Street Please enter your City/State: Somerville, Massachusetts City/State: Somerville, Massachusetts Please enter your Phone: 617-821-3936 Phone: 617-821-3936 Email: Glenn.Hoffman@umb.eduYou do not have to use the values I have shown above.
~ghoffman/it116_test/ex11.shThe script will prompt you for your Unix username.