Skip to content

Commit 20c283c

Browse files
Merge pull request geekcomputers#906 from masterofyourmind/master
Update crc.py
2 parents c45176f + 8df6d3e commit 20c283c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CRC/crc.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def crc_check(data, div):
2727

2828
while 1 > 0:
2929
print("Enter data: ")
30-
data = input()
30+
data = input() #can use it like int(input())
3131
print("Enter divisor")
32-
div = input()
32+
div = input() #can use it like int(input())
3333
original_data = data
3434
data = data + ("0" * (len(div) - 1))
3535
crc = crc_check(data, div)

0 commit comments

Comments
 (0)