Tumgik
Text
def say_hello(name: String="World") -> None: print(f"Hello, {name}!") if __name__ == "__main__": say_hello()
0 notes