Maison > Article > développement back-end > [python][Basic] Déterminer si une variable est itérable
Première méthode :
convient à python2 et python3
>>> from collections import Iterable >>> isinstance("str", Iterable) True
Méthode deux :
convient à python3
s = "hello world" hasattr(s, "__iter__")
Pour plus d'articles liés à [python][Bases] Déterminer si une variable est itérable, veuillez faire attention au site Web PHP chinois !