burim:python:python-labs:loesung_blatt2_aufgabe2_in_operator_kommentiert.py
print("y" in " Python ") # ist 'y' in ' Python ' enthalten?
print("x" in " Python ") # ist 'x' in ' Python ' enthalten?
print("p" in " Python ") # ist 'p' in ' Python ' enthalten?
print("th" in " Python ") # ist 'th' in ' Python ' enthalten?
print("to" in " Python ") # ist 'to' in ' Python ' enthalten?
print("y" not in " Python ") # ist 'y' nicht in ' Python ' enthalten?
burim/python/python-labs/loesung_blatt2_aufgabe2_in_operator_kommentiert.py.txt · Last modified: 2019/01/21 20:55 by 127.0.0.1
