hanyanfly 发表于 2021-3-6 19:49:36

闰年判断

# 判断闰年,可以被4整除但不能被100整除为闰年,或者能被400整除即为世纪闰年。

temp = input('请输入您想判断的年份:')
while temp.isdigit() is False:
    print('您的输入有误,请重新输入:', end=" ")
    temp = input()
year = int(temp)
if year % 4 == 0 and year % 100 != 0:
    print('该年份为闰年!')
elif year % 400 == 0:
    print('该年份是闰年!')
else:
    print('该年份不是闰年!')


# 判断输入内容是否为正整数,如下参考:
s 为字符串

s.isalnum()所有字符都是数字或者字母,为真返回 True,否则返回 False。

s.isalpha()   所有字符都是字母,为真返回 True,否则返回 False。

s.isdigit()   所有字符都是数字,为真返回 True,否则返回 False。

s.islower()    所有字符都是小写,为真返回 True,否则返回 False。

s.isupper()   所有字符都是大写,为真返回 True,否则返回 False。

s.istitle()      所有单词都是首字母大写,为真返回 True,否则返回 False。

s.isspace()   所有字符都是空白字符,为真返回 True,否则返回 False。
         
例如:
>>> s = 'I LOVE FISHC'
>>> s.isupper()
>>> True
页: [1]
查看完整版本: 闰年判断