¡@

Home 

python Programming Glossary: guido

Why isn't Python very good for functional programming?

http://stackoverflow.com/questions/1017621/why-isnt-python-very-good-for-functional-programming

that imperative OO use cases are carefully considered by Guido while functional programming use cases are not. When I write.. expression syntax Python's simple block syntax prevents Guido from adding it No pattern matching and no tail recursion mean.. and lambda expressions is basically impossible. Guido likes it this way and I think he's right. share improve this..

Choosing Java vs Python on Google App Engine

http://stackoverflow.com/questions/1085898/choosing-java-vs-python-on-google-app-engine

team however does have the advantage of having on board Guido van Rossum the inventor of Python and an amazingly strong engineer...

Why does Python pep-8 strongly recommend spaces over tabs for indentation?

http://stackoverflow.com/questions/120926/why-does-python-pep-8-strongly-recommend-spaces-over-tabs-for-indentation

etc. there is a clear way to end all discussion chose one. Guido was the one to choose. He didn't even have to give a reason..

Behaviour of increment and decrement operators in Python

http://stackoverflow.com/questions/1485841/behaviour-of-increment-and-decrement-operators-in-python

and simplicity. I don't know the exact argument Guido van Rossum gave for the decision but I can imagine a few arguments..

Why is ''>0 True in Python? [duplicate]

http://stackoverflow.com/questions/2384078/why-is-0-true-in-python

numbers possibly together with items of other types . Then Guido started disliking heterogeneous lists more generally and thus.. remained for a long time because around that same time Guido started really insisting on maintaining strong backwards compatibility..

__getattr__ on a module

http://stackoverflow.com/questions/2447353/getattr-on-a-module

both at the same time it's one or the other. Update From Guido van Rossum There is actually a hack that is occasionally used..

Is it Pythonic to use bools as ints?

http://stackoverflow.com/questions/3174392/is-it-pythonic-to-use-bools-as-ints

and 1 for true in the course of Python 2.2's life cycle Guido noticed that too many modules started with assignments such.. by Python newbies to restrict the language's abilities but Guido was adamant that we were just being pessimistic nobody would..

Python: Why is functools.partial necessary?

http://stackoverflow.com/questions/3252228/python-why-is-functools-partial-necessary

lambda just fine I say most definitely not all because Guido and I definitely are among those familiar with etc yet think.. things to a rebellion ever seen in Python's history until Guido backtracked and decided to leave lambda in. Several possible..

Which is faster in Python: x**.5 or math.sqrt(x)?

http://stackoverflow.com/questions/327002/which-is-faster-in-python-x-5-or-math-sqrtx

works. What is the theory of how Python code works I sent Guido van Rossum an email cause I really wanted to know the differences..

How does Python's super() work with multiple inheritance?

http://stackoverflow.com/questions/3277367/how-does-pythons-super-work-with-multiple-inheritance

This is detailed with a reasonable amount of detail by Guido himself at http python history.blogspot.com 2010 06 method resolution..

Which game scripting language is better to use: Lua or Python? [closed]

http://stackoverflow.com/questions/356160/which-game-scripting-language-is-better-to-use-lua-or-python

extend things. If you had to maintain the code you could. Guido is just a good engineer. I'm not sure even Guido understands.. could. Guido is just a good engineer. I'm not sure even Guido understands all of Python 2.5. Integrating Lua with C is so..

Python list comprehension rebind names even after scope of comprehension. Is this right?

http://stackoverflow.com/questions/4198906/python-list-comprehension-rebind-names-even-after-scope-of-comprehension-is-thi

control variable in Python 2 but not in Python 3. Here's Guido van Rossum creator of Python explaining the history behind this..

Why does Python assignment not return a value?

http://stackoverflow.com/questions/4869770/why-does-python-assignment-not-return-a-value

values of some boolean type is error prone. Presumably Guido is was among those who feel that way. The classic error is if..

Is there a “safe” subset of Python for use as an embedded scripting language?

http://stackoverflow.com/questions/861864/is-there-a-safe-subset-of-python-for-use-as-an-embedded-scripting-language

script safely i.e. Sandbox Capabilities for Python by Guido himself There is also a dead google code project at http code.google.com..