0
can anyone give me one example of this none
2 Answers
+ 2
def say_hey():
print("hey")
print(say_hey())
#this function will always print none after thé other prints because there was no arguments declared above in thé function say_hey().
0
Check chapter one of more types, its all about None.