预处理数据时,有个图像库的年龄标签可能是年龄区间,比如:(1,5)。也可能是1个单个的年龄值,比如:5。
赋值时,需要判断是否为全数字:5,如果不是全数字,则需要用到分割。
str.isnumeric(): True if 只包含数字;otherwise False。注意:此函数只能用于unicode string
str.isdigit(): True if 只包含数字;otherwise False。
str.isalpha():True if 只包含字母;otherwise False。
str.isalnum():True if 只包含字母或者数字;otherwise False。