We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This program will throw the following error
File "encode.py", line 39, in encode x, y = range( height / 2 ), range(width) TypeError: 'float' object cannot be interpreted as an integer
Then I Modify this line to
x, y = range( height / 2 ), range(width)
however, it throws a new error as follow:
File "C:\ProgramData\Anaconda3\lib\random.py", line 278, in shuffle x[i], x[j] = x[j], x[i] TypeError: 'range' object does not support item assignment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This program will throw the following error
Then I Modify this line to
x, y = range( height / 2 ), range(width)
however, it throws a new error as follow:
The text was updated successfully, but these errors were encountered: