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