«Python. Уроки для начинающих»: почему это не просто очередной учебник по языку
Самоучителей по языку Python сейчас выпускается много, и вот буквально несколько дней назад в "БХВ" вышло еще одно издание - книга Владимира Дронова "Python. Уроки для начинающих". Это не обычное пособие для тех, кто хочет освоить новый для себя язык программирования, а книга с уникальным подходом. Что же в нем уникального?
https://habr.com/ru/companies/bhv_publishing/articles/988220/
#python #книги #обучение #программирование #с_нуля
Python's Wild Trick For Render Ascii Heart Equation
Equation draws a heart
Uses a polynomial inequality to plot a heart shape entirely with math and loops.
#python #pythontricks #codingtips #programmingtutorial #asciiheartart #mathdrawnheart #loopbaseddrawing #romanticpythonpattern #equationartpython
https://www.youtube.com/watch?v=KB-G6jqSckQ
Python definitely isn't a good choice for web applications in terms of performance and cost.
https://youtu.be/shAELuHaTio?si=Qa5Avmf3g0bi9hJW
Celonis is hiring Senior Consultant - Data Science & Process Automation
🔧 #python #sql #seniorengineer
🌎 Copenhagen, Denmark
⏰ Full-time
🏢 Celonis
Job details https://jobsfordevelopers.com/jobs/senior-consultant-data-science-process-automation-at-celonis-com-jan-7-2026-d6e9a9?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
python_uaf: Use-after-free in Python https://lobste.rs/s/jbkh3w #python #security
https://github.com/yo-yo-yo-jbo/python_uaf
Hello !
J'aimerai utiliser un formatage de configuration pour des scripts Python.
Aujourd'hui j'utilise des fichier .txt pour renseigner des scripts je parse ligne par ligne.
fichier.pdf
start 3
PSS 1 3 7-10
PSD 12-13 17-18 23-24
PSS 56
Prends fichier, extrait les pages individuelles (PSS), et monte en doubles pages les PSD.
Ça extrait des PNG d'un PDF en les ordonnant en sortie à partir de start : image_03.png, image_04.png ...
Json ou y'a mieux ? (le plus simple possible)
U24 Notepad++ snap: bulk add python scripts to scripts folder #scripts #python #snap
https://askubuntu.com/q/1563147/612
FevaWorks 三大免費 Python 工作坊 FinTech 熱潮自我裝備良機
豐富,所以它已成為金融科技領域的首選工具。如果大家是從事金融行業,又想趁機學習電腦程式語言,希望可以在職場生涯 […]
#生活科技 #Blockchain #fevaworks #Python
https://unwire.hk/2026/01/23/fevaworks-workshop-jan2026/life-tech/?utm_source=rss&utm_medium=rss&utm_campaign=fevaworks-workshop-jan2026

@normplum Lists and dicts are very different objects under the hood, so it's kind of natural that they would work differently. (Like, lists technically don't have keys. enumerate() creates the "keys" as it goes along.) And historically iterating over things was less of a major feature in older versions of #Python so people didn't think as much about this inconsistency. If they were reinventing the language from scratch today, knowing everything we know now, maybe those would look a little more similar.
Да простят меня разработчики на питоне, но я орнул чаечкой.
#dev #python #LLM #story #horror #pic #Gemma3

On #PyPy not being under active management & not going past #python v3.10 ...
https://mathstodon.xyz/@majoranaoedipus/115934022496939954
-- OT could not be brought here for me to re-toot.
Why in #Python can you get the keys and values of a list using `enumerate(my_list)`, but to do the same with a dictionary you have to use `my_dictionary.items()`?