Search Results

32
votes

What’s the best way to implement an ‘enum’ in Python?

Python doesn't have an equivalent but you can implement your own. Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ... …
12
votes

Why is Lua considered a game language?

Lua is a great scripting language: it is extensible, it is simple to learn, and provides the basic primitives such that programmers can use OOP or functional programming (in the same league as Sche …
5
votes

Python: splitting an integer into digits

while number: digit = number % 10 # do whatever with digit number /= 10 On each iteration of the loop, it removes the last digit from number, assigning it to $ …