We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c45176f + 8df6d3e commit 20c283cCopy full SHA for 20c283c
CRC/crc.py
@@ -27,9 +27,9 @@ def crc_check(data, div):
27
28
while 1 > 0:
29
print("Enter data: ")
30
- data = input()
+ data = input() #can use it like int(input())
31
print("Enter divisor")
32
- div = input()
+ div = input() #can use it like int(input())
33
original_data = data
34
data = data + ("0" * (len(div) - 1))
35
crc = crc_check(data, div)
0 commit comments