Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix error message
  • Loading branch information
amitsaha committed Jan 2, 2020
commit c5c13e73ab3620f76fc38c469b82a288bef976f2
2 changes: 1 addition & 1 deletion explorations/trailing_zeros/trailing_zeros.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def trailing_zeros(num):
zeros = zeros + math.floor(num/math.pow(5, i))
return zeros
else:
print("Factorial of a non-positive integer is undefined")
print("Factorial of a non-positive non-integer is undefined")


if __name__ == "__main__":
Expand Down