心若磐石 发表于 2023-1-13 12:37:44

第十讲, while not year.isdigit(): 中的 while not year.isdigit():怎么理解?

第十讲, while not year.isdigit(): 中的 while not year.isdigit():怎么理解?

isdkz 发表于 2023-1-13 12:44:17

isdigit 是字符串的方法,用来判断一个字符串中包含的所有字符是不是十进制数>>> help(str.isdigit)
Help on method_descriptor:

isdigit(self, /)
    Return True if the string is a digit string, False otherwise.

    A string is a digit string if all characters in the string are digits and there
    is at least one character in the string.

>>>

KeyError 发表于 2023-1-13 13:26:05

如果满足year不全是数字重复执行

心若磐石 发表于 2023-1-13 15:43:55

KeyError 发表于 2023-1-13 13:26
如果满足year不全是数字重复执行

谢谢

心若磐石 发表于 2023-1-13 15:44:05

isdkz 发表于 2023-1-13 12:44
isdigit 是字符串的方法,用来判断一个字符串中包含的所有字符是不是十进制数

谢谢
页: [1]
查看完整版本: 第十讲, while not year.isdigit(): 中的 while not year.isdigit():怎么理解?