Make random choice compatible with python3

This commit is contained in:
2021-07-30 18:25:30 -06:00
parent 9c8d015902
commit 9ae82ad584

View File

@@ -2,5 +2,5 @@
import sys
import random
print sys.argv[1:]
print random.choice(sys.argv[1:])
print(sys.argv[1:])
print(random.choice(sys.argv[1:]))