I want to add a string to a list: list1 = ['hi','how','are','you','googl']ok = 'item22'list1 = list1.extend(ok) but it prints None. Why is that?
確定! 回上一頁