Showing results 3701-3710 of >3,792 (page 371)
http://max2.physics.sunysb.edu/itp/computing/doc/python/python-texinfo/math.html

math -- Python library reference Next: time Prev: array Up: Built-in Modules Top: Top 3.5. Built-in Module math This module is always available. It provides access to the mathematical functions defined by the C standard. They are: acos (x) -- function of module math asin (x) -- function of module math atan (x) -- function of module math atan2 (x, y) -- function of module math ceil (x) -- function of module math cos (x) -- function of module math cosh (x) -- function of module math exp (x) -- function of mod

https://blog.databigbang.com/persisting-native-python-queues/

Data Big Bang Blog Creativity and Problem Solving for Data Science (whatever it may mean…) | An experimental spin-off from Nektra Advanced Computing Menu Skip to content Persisting Native Python Queues Native Python queues do not allow you to stop and resume an application without loosing queue items. Adding persistence of objects to a derived Python Queue class partially addresses this issue. We use the DyBASE embedded object oriented database to persist queues items in files. If needed, you can

https://docs.temporal.io/develop/python/nexus/standalone-operations

Execute Nexus Operations independently without a Workflow using the Temporal Python SDK

https://blog.glennklockwood.com/2012/04/revisiting-perl-and-python-speed.html

- python April 02, 2012 ### Revisiting Perl and Python's Speed I was really surprised to see the discussion that was generated as the result of my previous post comparing the speed of Python and Perl . Many people much wiser than me posted a lot of valuable comments and suggestions, and two people were kind enough to post total rewrites of my routines which (to nobody's surprise) were much faster than the codes I wrote. A few people (both here on the blog and through other discussion) raised legitimate

https://twisted.org/pipermail/twisted-python/2007-March/047512.html

[Twisted-Python] CPU choice for big twisted server. Itamar Shtull-Trauring itamar at itamarst.org Wed Mar 14 07:38:17 MDT 2007 Previous message (by thread): [Twisted-Python] CPU choice for big twisted server. Next message (by thread): [Twisted-Python] CPU choice for big twisted server. Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On Tue, 2007-03-13 at 18:51 -0700, Alec Matusis wrote: > The main load comes from poll() and from modifying long dictionaries of the > protocol class instances (s

https://boardor.com/blog/happy-challenge-10-python-regex-questions

Skip to content Boardor # Happy Challenge: 10 Python Regex Questions 2026-05-10 10 questions about Python regex ### 1. What is the module used for handling regular expressions in Python? A. re B. regex C. pyregex D. regexp Answer: A Explanation: The module used for handling regular expressions is the re module. Click to show the answer ### 2. In the following code snippet, what is the purpose of the re.compile() function? import re pattern = r"\d+" regex = re.compile(pattern) A. Compile a regu

http://dabeaz.blogspot.com/2009/08/inside-inside-python-gil-presentation.html

### Thursday, August 27, 2009 ## Inside the "Inside the Python GIL" Presentation On June 11, 2009 I gave a presentation about the inner workings of the Python GIL at the Chicago Python user group meeting. To be honest, I always expected the event to be a pretty low-key affair involving some local Python hackers and some beers. However, the presentation went a little viral and I've received a number of requests to get the code modifications I made to investigate thread behavior--especially the traces that

https://mail.python.org/pipermail/python-ideas/2009-April/003908.html

[Python-ideas] x=(yield from) confusion [was:Yet another alternative name for yield-from] Jim Jewett jimjjewett at gmail.com Fri Apr 3 19:06:52 CEST 2009 Previous message: [Python-ideas] x=(yield from) confusion [was:Yet another alternative name for yield-from] Next message: [Python-ideas] x=(yield from) confusion [was:Yet another alternative name for yield-from] Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On 4/2/09, Guido van Rossum < guido at python.org > wrote: > On Thu, Apr 2, 2009 at

https://code-maven.com/slides/python/value-types-in-python.html

Home Code Maven Slides About --> Press ? for keyboard navigation int str float bool Literals, Value Types in Python examples/basics/show_types.py print( type(23) ) # int print( type(3.14) ) # float print( type("hello") ) # str print( type("23") ) # str print( type("3.24") ) # str print( type(None) ) # NoneType print( type(True) ) # bool print( type(False) ) # bool print( type([]) ) # list print( type({}) ) # dict print( type(hello) ) # NameError: name 'hello' is not defined print("Still running") Traceback

http://python-history.blogspot.com/2018/05/the-origins-of-pgen.html

# The History of Python A series of articles on the history of the Python programming language and its community. ## Saturday, May 12, 2018 ### The origins of pgen David Beazley's talk at US PyCon 2018, about parser generators, reminded me I should write a bit about its history. Here's a brief brain dump (maybe I'll expand later). There are actually two pgens. The original, in C, and a rewrite in Python, under lib2to3/pgen2. I wrote both. The original was actually the first code I wrote for Python. Al

‹ Prev Next ›