+ 1
What can you do if a variable name you would like to use is the same as a reserved word? 😄
2 Antworten
+ 2
Add an underscore _: list_, max_ etc. are valid variable names and won't break python
0
All you can do is hope it doesn't mess up with your code. You could simply use another variable name, though.