Skip to content

Commit a865c7f

Browse files
committed
Fix day_4.py
1 parent 8ed841e commit a865c7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

04_Day_Strings/day_4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
challenge = 'Thirty'
169169
print(challenge.isdigit()) # False
170170
challenge = '30'
171-
print(challenge.digit()) # True
171+
print(challenge.isdigit()) # True
172172

173173
# isdecimal():Checks decimal characters
174174

0 commit comments

Comments
 (0)