Ubuntu 24.04.3 LTS server with Python #apt #server #python
https://askubuntu.com/q/1556739/612
Just taught my first class of Intro to Scientific Python at MSKCC Graduate School 🧪🧬👨🏾🔬 It's so great being back in a classroom! #teaching #python

Just taught my first class of Intro to Scientific Python at MSKCC Graduate School 🧪🧬👨🏾🔬 It's so great being back in a classroom! #teaching #python

Introducing tdom: HTML templating with t‑strings https://lobste.rs/s/580mjo #python
https://davepeck.org/2025/09/22/introducing-tdom-html-templating-with-python-t-strings/
Amanhã no #SescAvPaulista rola o último encontro do semestre do Grupo de Estudos em #Python (https://hackmd.io/@sesc-av-paulista/estudos-em-python), se quiser participar é só chegar 14h para pegar uma senha grátis. A atividade é das 14h30 às 16h30.
Em outubro vou dar este curso quintas à tarde com 4 encontros:
https://www.sescsp.org.br/programacao/ilustracoes-vetoriais-para-grandes-formatos-com-programacao/

Kitty 0.43 já chegou com gestão de sessões e cursores múltiplos
🔗 https://tugatech.com.pt/t72105-kitty-0-43-ja-chegou-com-gestao-de-sessoes-e-cursores-multiplos
#emuladores #gpu #linux #macos #produtividade #python #sem #software #Wayland
@skillstopractice Also be sure to follow the JetBrains advocates of @pauleveritt, @wsvincent, and @t_redactyl who may be good individuals to help you on your journey in learning #python and related topics.
الدرس (5)
أنواع المتغيرات في لغة بايثون - القسم الأول:
ذكرنا سابقاً أنّ بايثون لا يطلب من المبرمج تحديد نوع المتغير، بل يكفي عليه الالتزام بإسناد قيمة له، وسيقوم بايثون بتحديد النوع تلقائياً. كما أنّ المتغيرات في لغة بايثون هي كائنات (أي أنها معرفة بمكتبات ويمكن إجراء مجموعة من الدوال عليها)، وتنقسم إلى سبعة أقسام أساسية:
- المتغيرات العددية (Numbers):
وتشمل ثلاثة أنواع:
الأعداد الصحيحة (int): x = 5
الأعداد العشرية (float): y = 1.2
الأعداد المركّبة (complex): z = 8J
- المتغيرات النصية (Strings)
يمكن تعريف المتغيرات النصية للقيم غير المشتملة على أسطر بطريقين:
a = "five"
b = 'name'
أما المتغيرات النصية للقيم المشتملة على أسطر فيتم تعريفها بالطريقة التالية:
c = """First Line.
Second Line."""
d = '''First Paragraph
Second Paragraph'''
لا يوجد أي مشكلة في استعمال نفس علامات التنصيص في نفس النص بشرط أن تكون مختلفة عن علامة التنصيص الأصلية (الخارجية) في النوع أو في العدد:
e = 'This Text Contains "double quotations".'
f = "This Text Contains 'single quotations'."
- المتغيرات المنطقية (Logical):
هذه المتغيرات تقبل إحدى قيمتين: (True) أو (False).
is_odd = True
is_even = False
وفي الواقع القيمة (True) تساوي 1 و القيمة (False) تساوي 0 ، ويمكن استعمالهما بدلاً عنهما بل لعله يكون أفضل.
is_odd = True
if is_odd:
print('This number is odd')
else:
print('This number is even')
#python
#programming_languages
#بايثون
#لغات_برمجة

#Python Pop Quic 🐍❓
A) {range}
B) (range)
C) [0, 1, 2]
D) (0, 1, 2)
E) {0, 1, 2}

Every Python dev has faced APIs that use camelCase or kebab-case while your codebase follows snake_case.
The typical approach creates technical debt: either break Python naming conventions or write complex mapping logic that clutters your codebase.
Pydantic's Field alias feature elegantly solves this: define external field names through aliases while keeping internal code perfectly Pythonic.
Integration compatibility and clean code that's maintainable. 💚

S1 EP3 T6 - Machine Learning in Python Predicting a House Price #algorithims #softwaredeveloper #dataengineering #learntocode #python #vscode #artificialintelligence #visualstudio #jupyterlabs #computerscience #coding #datascience #codingbasics #linq #softwareengineer #statistics #mathematics #sql #machinelearning #jupyternotebook
Development of aiocoap, my Python CoAP library, is approaching its next breaking release.
If there's anything about its usability as a library that has been bugging you, especially if it would require breaking changes: Let me know soon, either here or on the issue tracker at https://github.com/chrysn/aiocoap/issues