0
Why [None] does appear in output?
def my_islower(word): alphbet = 'qwertyuioplkjhgfdsazxcvbnm' if word in alphbet: print (True) else: print (False) lowers =list(map(my_islower,"ali")) print (lowers)
1 ответ
+ 3
Well because function my_islower(word) is returning nothing.