折翼的飞鸟

导航

Python的isdigit()和isalpha()

 

 提供一个参考链接《isalpha() Method


  使用isdigit()判断是否是全数字:

     if  word.encode( 'UTF-8' ).isdigit()


  使用isalpha()判断是否是全英文:

    if  word.encode( 'UTF-8' ).isalpha()


  判断是否属于某个List:

    if  word  in [ 'a', '。'  ]

 

posted on 2016-07-27 17:28  折翼的飞鸟  阅读(655)  评论(0编辑  收藏  举报