- ARCHIVE / TAG ARCHIVE
- Scheme and Lisp
If you’re coming from Lisp, and then start using Scheme (or the other way around) there are a few small differences between the two languages that it’s useful to always keep in mind. I tried to do that a number of times, but inevitably I find myself once again wondering: how do you say ‘progn’ […]
- Python’s phenotype
Phenotype: any observable characteristic or trait of an organism: such as its morphology, development, biochemical or physiological properties, or behavior. .. IDLE 1.2 >>> type(‘aaa’) <type ‘str’> >>> type(‘aaa’) <type ‘str’> >>> type(‘aaa’) == type(‘a’) True >>> type(type(‘aaa’) == type(‘a’)) <type ‘bool’> >>> type(type(type(‘aaa’) == type(‘a’))) <type ‘type’> >>> type(type(type(type(‘aaa’) == type(‘a’)))) <type ‘type’> >>> […]