You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CSC221/Week-1/firstpro.py

15 lines
236 B
Python

print("Experiment 1: ")
1 + 8
print(1 + 2)
"How come this did not print?"
print("but this did?")
print()
print()
print("Experiment 2:")
for number in 2, 4, 6:
print(2 * number)
for number in 2, 4, 6:
print(3 * number, end="")