[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] enumerations?




Outside of software development, to enumerate means to assign numbers to.


This is the sense python's enumerate() intends.

However, "enumerations" in software development are really only related to that sense of enumeration because of a particular way they can be implemented (and are implemented in C/C++)

An "enumeration" in software development basically means a type that takes a fixed list of possible values.


James