79096565

Date: 2024-10-17 05:25:29
Score: 1.5
Natty:
Report link
def is_digit(s):
    flag = True
    for i in s:
        if not i.isdigit():
            flag = False
    return flag       
    
s = "12345"
print(is_digit(s))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gaurao Mate