5 lines
111 B
Python
5 lines
111 B
Python
hashes = ''
|
|
while True:
|
|
inputhash = input("Hash: ")
|
|
hashes = hashes + ',' + inputhash
|
|
print(hashes) |