python

Back Open Paginator
09.10.2025 19:40
hn50 (@hn50@social.lansky.name)

Python 3.14 Is Here. How Fast Is It? – Miguelgrinberg.com

Link: blog.miguelgrinberg.com/post/p
Discussion: news.ycombinator.com/item?id=4

#python




Show Original Post


09.10.2025 19:27
sandorspruit (@sandorspruit@mastodon.nl)

@eniko @lisamelton I bet he said “I came here for an argument” and then it was downhill from there 🤣
#python #monty




Show Original Post


09.10.2025 19:22
GripNews (@GripNews@mastodon.social)

🌗 Python 3.14 效能實測:速度表現如何?
➤ 深入解析 Python 3.14 的速度提升與新特性實測
blog.miguelgrinberg.com/post/p
作者回顧先前關於 Python 效能的探討,並針對剛發布的 Python 3.14 進行了全面的效能基準測試。測試涵蓋了多個 Python 版本、Pypy、Node.js 和 Rust,並使用了遞迴的斐波那契數計算和非遞迴的氣泡排序兩個純 Python 腳本。測試環境包括 Linux 和 macOS 系統,並探討了 Python 3.13+ 新增的 JIT(即時編譯)和 Free-threading(多執行緒)解釋器選項。結果顯示 Python 3.14 在純 Python 程式碼的執行速度上相較於前一版本有顯著提升,但 JIT 和 Free-threading 在此特定測試中的效能優勢並不明顯,其中 Free-threading 在單執行緒場景下甚至略慢於標準解釋器。
+ 看到 P




Show Original Post


09.10.2025 19:17
reddit_tech_vn_bot (@reddit_tech_vn_bot@mastodon.maobui.com)

🛠️ Mới: PyPIPlus – công cụ web nhanh xem thông tin gói Python. Chỉ nhập tên gói, nhận ngay danh sách phụ thuộc, sub‑dependencies, điểm sức khỏe, giấy phép, phiên bản Python yêu cầu, số gói phụ thuộc và kích thước. Không cần cài đặt, đăng nhập, hỗ trợ cài offline, kiểm tra bảo mật và audit. #Python #PyPI #DevTools #CôngCụ #LậpTrình #BảoMật

pypiplus.com




Show Original Post


09.10.2025 19:15
treyhunner (@treyhunner@mastodon.social)

Due to the laziness of reversed(), if we were to pass it lots of items (say 100,000 items) we won't end up copying the iterable that we gave it.

Read more 👉 trey.io/ur7l4g




Show Original Post


09.10.2025 19:13
djangonews (@djangonews@mastodon.social)

💼 [Jobs] Senior Python Developer

jobs.django-news.com/556/senio




Show Original Post


09.10.2025 19:13
djangonews (@djangonews@mastodon.social)

💼 [Jobs] Senior Software Engineer (Python and Solidity)

jobs.django-news.com/554/senio




Show Original Post


09.10.2025 18:48
hackernews_bot_vn (@hackernews_bot_vn@mastodon.maobui.com)

Tại sao lập trình phản ứng chưa phổ biến trong Python - Cách Signals có thể thay đổi điều đó. Lập trình phản ứng có thể trở thành xu hướng mới trong Python nhờ Signals. #ReactiveProgramming #Python #Signals #LậpTrìnhPhảnỨng #PythonProgramming #TinTứcCôngNghệ

bui.app/why-reactive-programmi




Show Original Post


09.10.2025 18:43
CuratedHackerNews (@CuratedHackerNews@mastodon.social)

Python 3.14 Is Here. How Fast Is It? – Miguelgrinberg.com

blog.miguelgrinberg.com/post/p




Show Original Post


09.10.2025 18:35
display (@display@f.kawa-kun.com)
Found something interesting out the hard way. #Python
from string import Formatter

a = 0
b = 1

print(f"{a or b}")  # Works
print("{a or b}".format(a=0, b=1))  # Does not work
print(Formatter().format("{a or b}", a=0, b=1))  # Does not work



Show Original Post


09.10.2025 18:34
objects (@objects@bbs.kawa-kun.com)

Found something interesting out the hard way. :blobfoxthinkgoogly: #Python

from string import Formatter

a = 0
b = 1

print(f"{a or b}")  # Works
print("{a or b}".format(a=0, b=1))  # Does not work
print(Formatter().format("{a or b}", a=0, b=1))  # Does not work



Show Original Post


09.10.2025 18:30
wood (@wood@hachyderm.io)

Excited about this launch—check it out if you're a #Python developer.

honeybadger.social/@honeybadge




Show Original Post


1 ...1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 ...1559
UP