print() is a function in Python 3

sammachin-gprs
cclauss 2018-09-02 13:30:33 +02:00 committed by GitHub
parent 2aeb0434da
commit 15bf640af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ def validate(resp):
cnt += 1 cnt += 1
if cnt == NUM_REQS: if cnt == NUM_REQS:
seen.sort() seen.sort()
print print("")
print seen print(seen)
print print("")
el = None el = None
for i in seen: for i in seen:
if el is None: if el is None: