6 lines
92 B
Python
6 lines
92 B
Python
#!/use/bin/python3
|
|
|
|
# more dummy code for hw
|
|
def shout(text):
|
|
return text.upper() + "!"
|