MCPcopy Index your code
hub / github.com/mouredev/Hello-Python / print_upper_texts

Function print_upper_texts

Basic/10_functions.py:63–66  ·  view source on GitHub ↗
(*texts)

Source from the content-addressed store, hash-verified

61
62
63def print_upper_texts(*texts):
64 print(type(texts))
65 for text in texts:
66 print(text.upper())
67
68
69print_upper_texts("Hola", "Python", "MoureDev")

Callers 1

10_functions.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected