print("is 1 is in the list?:",1 in t) print("is 10 is in the list?:",10 in t) print("is 2 is not in the list?:",2 not in t) print("is 12 is not in the list?:",12 not ...