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.
13 lines
152 B
Python
13 lines
152 B
Python
11 months ago
|
#Challenges 3
|
||
|
def moan():
|
||
|
print("\nPython is useless!\nAnd so are these worksheets")
|
||
|
|
||
|
moan()
|
||
|
|
||
|
# Challenge 4
|
||
|
|
||
|
def twice(x):
|
||
|
print(x*x)
|
||
|
|
||
|
twice(5)
|