Python Kopieren tup = ('a', 'b', 'c') 'b' in tup Die Ausgabe lautet wie folgt:Output Kopieren True Mit not in können Sie auch überprüfen, ob etwas nicht in einer Liste oder einem Tupel enthalten ist:Python Kopieren lis = ['a', 'b', 'c'] 'a' not in lis Die ...