Showing results 801-810 of >888 (page 81)
https://mail.python.org/pipermail/python-dev/2007-July/073790.html

[Python-Dev] itertools addition: getitem() Steven Bethard steven.bethard at gmail.com Sun Jul 8 17:56:04 CEST 2007 Previous message: [Python-Dev] itertools addition: getitem() Next message: [Python-Dev] itertools addition: getitem() Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On 7/8/07, Kevin Jacobs < jacobs at bioinformed.com > < bioinformed at gmail.com > wrote: > Also vaguely apropos: > > def ilen(seq): > 'Return the length of the hopefully finite sequence' > n = 0 > for x in seq: > n

https://docs.tilt.dev/example_python.html

Best practices for developing Python projects with Tilt

https://github.com/programasweights/programasweights-python/issues

Python SDK for ProgramAsWeights — compile natural language specs into neural programs that run locally - Issues · programasweights/programasweights-python

https://donaldsebleung.com/category/software-development/python/

Articles related to software development, programming or scripting in Python

https://pythonprogramming.net/training-model-chatbot-deep-learning-python-tensorflow/?completed=%2Ftraining-dataset-chatbot-deep-learning-python-tensorflow%2F

Python Programming tutorials from beginner to advanced on a massive variety of topics. All video and text tutorials are free

https://lingshunlab.com/program/python/python-read-serial-data-and-display-data-as-hex

顺便做个实验 Voron2 AI 其他 Python Python 读取串口数据并以16进制显示 2022年12月11日2022年12月11日 lingshun 目录 Toggle 本文凌顺实验室(lingshunlab.com)简单实现Python读取串口数据,并且按16进制格式显示出来。 读取串口数据 import serial as ser import time se = ser.Serial("/dev/ttyUSB0", 115200, timeout=1) se.flush

http://xahlee.info/python/list_basics.html

Python Tutorial Python: List By Xah Lee. Date: 2005-01-11. Last updated: 2025-11-26. Syntax of List (Literal Expression for List) [x0, x1, x2, etc] list can have items of different types. x = [1, 2, "m"] print(x) # [1, 2, 'm'] 0-Based Index, is Between Items list index start at 0, and is between items. [ a b c d] 0 1 2 3 Total Number of Items len(list) Return the count of number of items. x = [0, 1, 2] print(len(x)) # 3 Check Exist x in list check if exist. print(2 in [0, 1, 2]) # True print(9 in [0, 1, 2

https://blog.semicolonsoftware.de/python-decorators-explained/

python # Python Decorators, Explained #### Stefan Seemayer 29 Oct 2019 • 6 min read Decorators in Python are a very powerful albeit mind-bending and under-documented tool. They are useful for many things, including changing how a function is executed (e.g. for denoting that an API endpoint requires authentication) or to register a function as a handler (e.g. to register different parser functions for different file types). This article briefly explains how decorators work in Python and then shows diffe

https://docs.baseten.co/reference/cli/truss/run-python

Run a Python script in the Truss environment

https://twisted.org/pipermail/twisted-python/2008-January/049139.html

# [Twisted-Python] Newbie question Petr Mifek pm-twisted-python at anapol.cz Thu Jan 24 12:58:50 MST 2008 - Previous message (by thread): [Twisted-Python] Newbie question - Next message (by thread): [Twisted-Python] Newbie question - Messages sorted by: - [ date ] - [ thread ] - [ subject ] - [ author ] UGHHH, Thunderbird's syntax coloring sucks ;) of course read that result = "I'm the result" Otherwise, look at: http://twistedmatrix.com/documents/current/api/twisted.internet.interfaces.IReactorTime.htm

‹ Prev Next ›