Properly define raw_input)( in Python 3

__raw_input()__ was removed in Python 3 in favor of __input()__.  This change ensure similar functioning in both Python 2 and Python 3.
This commit is contained in:
cclauss 2018-07-02 10:11:28 +02:00 committed by GitHub
parent d4b4b7ba35
commit ee3b0f2e50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,10 +2,9 @@
from __future__ import print_function
try:
raw_input
input = raw_input
except:
pass
raw_input # Python 2
except NameError:
input = raw_input # Python 3
# Chaos Machine (K, t, m)
K = [0.33, 0.44, 0.55, 0.44, 0.33]; t = 3; m = 5