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-3/Pretty-picture/Challenges3-4.py

13 lines
152 B
Python

#Challenges 3
def moan():
print("\nPython is useless!\nAnd so are these worksheets")
moan()
# Challenge 4
def twice(x):
print(x*x)
twice(5)