Skip to content
New issue

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

🖊️ Allow assigning list access to list access #5873

Merged
merged 2 commits into from
Oct 24, 2024
Merged

Conversation

boryanagoncharenko
Copy link
Collaborator

This PR allows in level 16 to assign a list element another list element, e.g. a[1] = b[2]

Fixes #5758

How to test
Go to level 16 and try the following code:

kassa_munten = [1,1,1,1,1,1]
random_aantal_muntjes = [2,3,4,5, 6]
kassa_munten[1] = random_aantal_muntjes[random]
print kassa_munten[1]

Ensure that it works without errors

Copy link
Contributor

mergify bot commented Oct 24, 2024

Thank you for contributing! Your pull request is now going on the merge train (choo choo! Do not click update from main anymore, and be sure to allow changes to be pushed to your fork).

@mergify mergify bot merged commit e6c8184 into main Oct 24, 2024
11 checks passed
@mergify mergify bot deleted the errors_5758 branch October 24, 2024 15:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

🪲Assigning a random list item to another list item leads to a cryptic error
2 participants