若要判斷元素是否存在於指定的集合中,可以使用 in 運算子: # 判斷元素是否存在 if 'apple' in fruits: print('apple 存在') else: print('apple 不存在') apple 存在 ...
確定! 回上一頁