** * Dieser Artikel ist von Udemy "[Einführung in Python3, unterrichtet von aktiven Silicon Valley-Ingenieuren + Anwendung + Code-Stil im amerikanischen Silicon Valley-Stil](https://www.udemy.com/course/python-beginner/" Einführung in Python3, unterrichtet von aktiven Silicon Valley-Ingenieuren + Anwendung + Code-Stil im amerikanischen Silicon Valley-Stil ")" Es ist eine Klassennotiz für mich nach dem Kurs von. Es ist mit Genehmigung des Ausbilders Jun Sakai für die Öffentlichkeit zugänglich. ** ** **
in_and_not
y = [1, 2, 3]
x = 1
if x in y:
print('in')
if 100 not in y:
print('not in')
result
in
not in
not
a = 1
b = 2
#Dann mache ich das
if not a == b:
print('Not equal')
#Sollte das tun
if a != b:
print('Not equal')
result
Not equal
Not equal
boolean_not
is_ok = True
if not is_ok:
print('hello')
result
Es kann ein wenig unangenehm sein, wenn Sie sich nicht daran gewöhnen, Es ist üblich, nicht zum booleschen Typ hinzuzufügen, also gewöhnen Sie sich daran.
Recommended Posts