Showing results 3291-3300 of >3,379 (page 330)
https://twisted.org/pipermail/twisted-python/2008-February/049416.html

[Twisted-Python] thread created from tcp connection glyph at divmod.com glyph at divmod.com Wed Feb 27 23:11:58 MST 2008 Previous message (by thread): [Twisted-Python] thread created from tcp connection Next message (by thread): [Twisted-Python] connection identification string Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On 05:59 am, big_tyo at inf.its-sby.edu wrote: >The Problem is i still haven't figure out how to send some parameters >to a >thread that created from established tcp conn

https://mail.python.org/pipermail/python-dev/2015-October/142094.html

[Python-Dev] Should PEP 498 specify if rf'...' is valid? Terry Reedy tjreedy at udel.edu Sat Oct 31 22:32:38 EDT 2015 Previous message (by thread): [Python-Dev] Should PEP 498 specify if rf'...' is valid? Next message (by thread): [Python-Dev] Should PEP 498 specify if rf'...' is valid? Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On 10/31/2015 8:48 PM, Nick Coghlan wrote: > Given that "f" is standing for a runtime transformation (unlike the > purely declarative "b" and "r"), it makes sens

https://web.archive.org/web/20240715184052/https://docs.python.org/3/library/doctest.html

Source code: Lib/doctest.py The doctest module searches for pieces of text that look like interactive Python sessions, and then executes those sessions to verify that they work exactly as shown. Th

https://stackabuse.com/python-for-nlp-topic-modeling/

This is the sixth article in my series of articles on Python for NLP. In my previous article, I talked about how to perform sentiment analysis of Twitter data u

https://www.literateprograms.org/selection_sort__python__arrays_.html

# Selection sort (Python, arrays) ### From LiteratePrograms Jump to: navigation , search - Other implementations: C | C++ | C# | Erlang | Haskell | Java | Python, arrays This is an example of the selection sort sorting algorithm, using an array package to sort in-place. Selection sort is a simple but inefficient sort — only to be used for short sequences and where an insertion sort would be too complex. At this point it is more folkloric than useful, best considered as a precursor to Heapsort. ## theo

https://pythonbook.cc/chapters/basic/error-handling

這是一本新手也能看的懂的 Python 程式語言教課書。本書將涵蓋 Python 程式語言以及網站製作的基本概念,同時也提供程式碼範例,以便讀者實際操作和學習。學習不僅為公司或工作,更是為了自己的成長和樂趣。如果你想要學習 Python 這個程式語言或是用它製作網站,這本書將會是您的最佳起點

https://eev.ee/blog/2012/05/23/python-faq-descriptors/

# Python FAQ: Descriptors / fuzzy notepad Part of my Python FAQ . How does @property work? Why does it call my __getattr__? What’s a “descriptor”? Python offers several ways to hook into attribute access—that is, there are several ways you can affect what happens when someone does obj.foo to your object. The most boring behavior is that the object has a foo attribute (perhaps set in __init__), or the class has a foo method or attribute of its own. If you need total flexibility, there are the magic

https://modpython.org/pipermail/mod_python/2006-March/020516.html

[mod_python] 411 Length Required for POST John Ruff jcruff at gmail.com Fri Mar 3 14:45:54 EST 2006 Previous message: [mod_python] 411 Length Required for POST Next message: [mod_python] 411 Length Required for POST Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] Here's the javascript code for setting up the XMLHttpRequest. *Note: This is not production code. [code] function getLogData() { /* Create a new XMLHttpRequest object to talk to the Web server */ /*@cc_on @*/ /*@if (@_jscript_version

https://codeling.dev/blog/python-iterators-vs-iterables/

Discover how iterators and iterables work in Python. This guide includes code examples, custom classes, and how generators fit in

https://note.nkmk.me/en/python-timeit-measure/

In Python, you can easily measure the execution time with the timeit module of the standard library. timeit — Measure execution time of small code snippets — Python 3.11.3 documentation This article

‹ Prev Next ›