[Introduction à l'application Udemy Python3 +] 36. Utilisation de In et Not

** * Cet article provient d'Udemy "[Introduction à Python3 enseignée par des ingénieurs actifs de la Silicon Valley + application + style de code de style américain de la Silicon Valley](https://www.udemy.com/course/python-beginner/" Introduction à Python3 enseignée par des ingénieurs actifs de la Silicon Valley + application + Style de code de style de la Silicon Valley américaine ")" C'est une note de classe pour moi après avoir suivi le cours. Il est ouvert au public avec la permission de l'instructeur Jun Sakai. ** **

■ Utilisation de In et Not

◆ Utilisation de base

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
◆ Sinon, ne doit pas être utilisé

not


a = 1
b = 2

#Que de faire ça
if not a == b:
    print('Not equal')

#Devrait faire ça
if a != b:
    print('Not equal')

result


Not equal
Not equal
◆ pas lorsque le type booléen

boolean_not


is_ok = True

if not is_ok:
    print('hello')

result


Cela peut être un peu désagréable si vous ne vous y habituez pas, Il est courant de ne pas ajouter au type booléen, alors habituez-vous-y.

Recommended Posts

[Introduction à l'application Udemy Python3 +] 36. Utilisation de In et Not
[Introduction à l'application Udemy Python3 +] 23. Comment utiliser Tapuru
[Introduction à Udemy Python3 + Application] 27. Comment utiliser le dictionnaire
[Introduction à Udemy Python3 + Application] 30. Comment utiliser l'ensemble
[Introduction à Python] Comment utiliser la classe en Python?
Comment utiliser is et == en Python
[Introduction à l'application Udemy Python3 +] 64. Espace de noms et portée
[Introduction à Python] Comment utiliser l'opérateur booléen (et ・ ou ・ non)
[Introduction à Udemy Python3 + Application] 68. Instruction d'importation et AS
[Présentation de l'application Udemy Python3 +] 58. Lambda
[Présentation de l'application Udemy Python3 +] 31. Commentaire
[Présentation de l'application Udemy Python3 +] 57. Décorateur
Comment utiliser SQLite en Python
[Présentation de l'application Udemy Python3 +] 59. Générateur
Comment utiliser Mysql avec python
Comment utiliser ChemSpider en Python
Comment utiliser PubChem avec Python
[Introduction à l'application Udemy Python3 +] Résumé
[Introduction à l'application Udemy Python3 +] 42. pour instruction, instruction break et instruction continue
[Introduction à l'application Udemy Python3 +] 39. instruction while, instruction continue et instruction break
Comparaison de l'utilisation des fonctions d'ordre supérieur dans Python 2 et 3
[Introduction à Udemy Python3 + Application] 50. Arguments de position, arguments de mots-clés et arguments par défaut
[Introduction à Udemy Python3 + Application] 18. Méthode List
[Introduction à l'application Udemy Python3 +] 28. Type collectif
[Introduction à Udemy Python3 + Application] 25. Méthode de type dictionnaire
[Introduction à l'application Udemy Python3 +] 33. instruction if
Comment installer et utiliser pandas_datareader [Python]
[Introduction à l'application Udemy Python3 +] 55. Fonctions intégrées
[Introduction à l'application Udemy Python3 +] 48. Définition des fonctions
[Introduction à l'application Udemy Python3 +] 10. Valeur numérique
[Introduction à l'application Udemy Python3 +] 21. Type Taple
[Introduction à l'application Udemy Python3 +] 45. fonction enumerate
[Introduction à l'application Udemy Python3 +] 41. fonction d'entrée
[Introduction à l'application Udemy Python3 +] 17. Opération de liste
[Introduction à l'application Udemy Python3 +] 65. Gestion des exceptions
[Introduction à l'application Udemy Python3 +] 11. Chaîne de caractères
[Introduction à l'application Udemy Python3 +] 44. fonction range
[Introduction à l'application Udemy Python3 +] 46. fonction zip
[Introduction à l'application Udemy Python3 +] 24. Type de dictionnaire
python: Comment utiliser les locals () et globals ()
Comment utiliser __slots__ dans la classe Python
Comment utiliser le zip Python et énumérer
[Introduction à Udemy Python3 + Application] 8. Déclaration de variable
Comment utiliser les expressions régulières en Python
[Introduction à Udemy Python3 + Application] 29. Méthode Set
[Introduction à l'application Udemy Python3 +] 16. Type de liste
[Introduction à Udemy Python3 + Application] 61. Notation d'inclusion de dictionnaire
[Introduction à l'application Udemy Python3 +] 22. Déballage de taples
[Introduction à Udemy Python3 + Application] 49. Citation de fonction et déclaration de valeur de retour
Comment utiliser les fonctions dans des fichiers séparés version Perl et version Python
[Introduction à Python] Comment utiliser l'opérateur in dans l'instruction for?
[Introduction à Udemy Python3 + Application] 69. Importation du chemin absolu et du chemin relatif
[Introduction à l'application Udemy Python3 +] 12. Indexation et découpage des chaînes de caractères
Comment utiliser la bibliothèque C en Python
[Introduction à Udemy Python3 + Application] 26. Copie du dictionnaire
Comment générer une séquence en Python et C ++
[Introduction à Udemy Python3 + Application] 60. Notation d'inclusion de liste
Comment utiliser la bibliothèque d'images Python dans la série python3
[Introduction à Udemy Python3 + Application] 38. Lors du jugement Aucun
Résumé de l'utilisation de MNIST avec Python
[Introduction à l'application Udemy Python3 +] 40. Instruction while else