python typing void function

Solutions on MaxInterview for python typing void function by the best coders in the world

showing results for - "python typing void function"
Carol
12 Feb 2020
1def function(param: str) -> None:
2  # A function that doesn't return anything,
3  # has None as return type.
4  print("hey")