home.social

#pythontips — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #pythontips, aggregated by home.social.

  1. Don't get me wrong, the learning curve is real!

    However Python devs have a head start — you already think in types, you already care about elegance + clean code.

    Which tip would've helped you most? Or any other ones?

    #Python #Rust #LearnRust #PythonTips #SoftwareDevelopment

  2. Don't get me wrong, the learning curve is real!

    However Python devs have a head start — you already think in types, you already care about elegance + clean code.

    Which tip would've helped you most? Or any other ones?

  3. Don't get me wrong, the learning curve is real!

    However Python devs have a head start — you already think in types, you already care about elegance + clean code.

    Which tip would've helped you most? Or any other ones?

    #Python #Rust #LearnRust #PythonTips #SoftwareDevelopment

  4. Don't get me wrong, the learning curve is real!

    However Python devs have a head start — you already think in types, you already care about elegance + clean code.

    Which tip would've helped you most? Or any other ones?

    #Python #Rust #LearnRust #PythonTips #SoftwareDevelopment

  5. Don't get me wrong, the learning curve is real!

    However Python devs have a head start — you already think in types, you already care about elegance + clean code.

    Which tip would've helped you most? Or any other ones?

    #Python #Rust #LearnRust #PythonTips #SoftwareDevelopment

  6. Happy 32nd anniversary, Python! Learn 32 practical Python one-liners that show why readability, simplicity, and power still define the language today.

    More details here: ostechnix.com/32-python-one-li

    #Python #Oneliners #Anniversary #Programming #Opensource #PythonTips

  7. 🐍💡 ¿Sabías que en Python __init__ no es el constructor?

    En Python solemos llamar “constructor” a __init__, pero técnicamente no lo es.
    El verdadero constructor es __new__, el método que crea la nueva instancia de la clase.
    Recién después de que __new__ devuelve el objeto, Python llama a __init__ para inicializar sus atributos.

    ¿Querés saber más? 👇

    juncotic.com/poo-metodos-espec

    #Python #Programación #DesarrolloSoftware #POO #CleanCode #AprenderPython #PythonTips

  8. 🐍💡 ¿Sabías que en Python __init__ no es el constructor?

    En Python solemos llamar “constructor” a __init__, pero técnicamente no lo es.
    El verdadero constructor es __new__, el método que crea la nueva instancia de la clase.
    Recién después de que __new__ devuelve el objeto, Python llama a __init__ para inicializar sus atributos.

    ¿Querés saber más? 👇

    juncotic.com/poo-metodos-espec

    #Python #Programación #DesarrolloSoftware #POO #CleanCode #AprenderPython #PythonTips

  9. 🐍💡 ¿Sabías que en Python __init__ no es el constructor?

    En Python solemos llamar “constructor” a __init__, pero técnicamente no lo es.
    El verdadero constructor es __new__, el método que crea la nueva instancia de la clase.
    Recién después de que __new__ devuelve el objeto, Python llama a __init__ para inicializar sus atributos.

    ¿Querés saber más? 👇

    juncotic.com/poo-metodos-espec

    #Python #Programación #DesarrolloSoftware #POO #CleanCode #AprenderPython #PythonTips

  10. 🐍💡 ¿Sabías que en Python __init__ no es el constructor?

    En Python solemos llamar “constructor” a __init__, pero técnicamente no lo es.
    El verdadero constructor es __new__, el método que crea la nueva instancia de la clase.
    Recién después de que __new__ devuelve el objeto, Python llama a __init__ para inicializar sus atributos.

    ¿Querés saber más? 👇

    juncotic.com/poo-metodos-espec

    #Python #Programación #DesarrolloSoftware #POO #CleanCode #AprenderPython #PythonTips

  11. 🐍💡 ¿Sabías que en Python __init__ no es el constructor?

    En Python solemos llamar “constructor” a __init__, pero técnicamente no lo es.
    El verdadero constructor es __new__, el método que crea la nueva instancia de la clase.
    Recién después de que __new__ devuelve el objeto, Python llama a __init__ para inicializar sus atributos.

    ¿Querés saber más? 👇

    juncotic.com/poo-metodos-espec

    #Python #Programación #DesarrolloSoftware #POO #CleanCode #AprenderPython #PythonTips

  12. 🔍 ¿Conocés los MÉTODOS ESPECIALES en Python?

    Los métodos con doble guión bajo (init, str, len, etc.) son una de las características más poderosas de Python, pero pocos los dominan realmente.

    En este nuevo artículo te explico:

    ✅ ¿Qué son realmente los métodos especiales?
    ✅ Los métodos más útiles en proyectos reales
    ✅ Cómo implementar operadores personalizados (+, -, ==, etc.)

    juncotic.com/poo-metodos-espec

    #Python #POO #Programación #DesarrolloSoftware #PythonTips #python

  13. 🐍 Why waste time with 10 languages?

    Python is the only one beginners need in 2025.

    ✔️ Clean syntax
    ✔️ High demand in tech careers
    ✔️ Beginner-friendly but powerful

    📍 Learn Python from scratch in Bopal, Ahmedabad!
    🎓 Join the Best Python Course at TCCI – Tririd Computer Coaching Institute

    #PythonTraining #TCCI #BopalAhmedabad #TechCareer #PythonTips #CodingBootcamp #ComputerClasses #TCCIComputerCoaching #ProgrammingClasses #Coding

  14. Tuple instead of Lists in Python:
    Use a tuple instead of a list in Python when you need an immutable, hash able, and faster collection of fixed items.
    #PythonTips #PythonTuple #LearnPython #PythonDev #CodingTips #Immutable #PythonCode #DevLife #TupleVsLis

  15. Named Tuples in Python:
    A named tuple lets you create lightweight, immutable objects with named fields for better readability and access than regular tuples.
    #Python #PythonTips #NamedTuple #CodingTips #LearnPython #PythonDeveloper #CodeSmarter #100DaysOfCode #PythonHack #TechTip

  16. Single Element Tuple in Python:
    A single element tuple in Python is defined by placing a comma after the element, e.g., t = (5,).
    #Python #Tuple #PythonTips #LearnPython #Coding #PythonBasics #DevTips #SingleElementTuple #PythonProgramming #codenewbie

  17. Comprehension to create dictionaries in Python:
    Dictionary comprehension is a concise way to create dictionaries in a single line using a syntax similar to list comprehension.
    #Python #PythonTips #DictionaryComprehension #CodeNewbie #100DaysOfCode #LearnPython #OneLiner #PythonTricks #DevTips #CodingInPython

  18. Comprehension to create dictionaries in Python:
    Dictionary comprehension is a concise way to create dictionaries in a single line using a syntax similar to list comprehension.
    #Python #PythonTips #DictionaryComprehension #CodeNewbie #100DaysOfCode #LearnPython #OneLiner #PythonTricks #DevTips #CodingInPython

  19. Comprehension to create dictionaries in Python:
    Dictionary comprehension is a concise way to create dictionaries in a single line using a syntax similar to list comprehension.
    #Python #PythonTips #DictionaryComprehension #CodeNewbie #100DaysOfCode #LearnPython #OneLiner #PythonTricks #DevTips #CodingInPython

  20. Comprehension to create dictionaries in Python:
    Dictionary comprehension is a concise way to create dictionaries in a single line using a syntax similar to list comprehension.
    #Python #PythonTips #DictionaryComprehension #CodeNewbie #100DaysOfCode #LearnPython #OneLiner #PythonTricks #DevTips #CodingInPython

  21. Comprehension to create dictionaries in Python:
    Dictionary comprehension is a concise way to create dictionaries in a single line using a syntax similar to list comprehension.
    #Python #PythonTips #DictionaryComprehension #CodeNewbie #100DaysOfCode #LearnPython #OneLiner #PythonTricks #DevTips #CodingInPython

  22. Nested Dictionaries in Python:
    A nested dictionary in Python is a dictionary where values can also be dictionaries, allowing multi-level data storage.
    #PythonTips #NestedDictionary #LearnPython #PythonForBeginners #CodeSmart #PythonDev #PythonBasics #CodingTips

  23. Nested Dictionaries in Python:
    A nested dictionary in Python is a dictionary where values can also be dictionaries, allowing multi-level data storage.
    #PythonTips #NestedDictionary #LearnPython #PythonForBeginners #CodeSmart #PythonDev #PythonBasics #CodingTips

  24. Tuple concatenation in Python:
    Tuple concatenation in Python means combining two or more tuples using the + operator.
    #python #tuples #pythontips #TupleConcatenation #codesnippet #learnpython

  25. Encode and Decode Strings in Python :
    Encode converts a string to bytes, and decode converts bytes back to a string.
    #Python #Encoding #Decoding #PythonTips #ByteString

  26. 🐍 ¿Te genera dudas el archivo __init__.py en Python?

    En este artículo te cuento qué es, para qué sirve y por qué sigue siendo importante en proyectos modernos, aunque no siempre sea obligatorio.

    📄 juncotic.com/entendiendo-el-ar

    #Python #Programación #PythonTips #AprenderPython

  27. 🐍 ¿Te genera dudas el archivo __init__.py en Python?

    En este artículo te cuento qué es, para qué sirve y por qué sigue siendo importante en proyectos modernos, aunque no siempre sea obligatorio.

    📄 juncotic.com/entendiendo-el-ar

    #Python #Programación #PythonTips #AprenderPython

  28. 🐍 ¿Te genera dudas el archivo __init__.py en Python?

    En este artículo te cuento qué es, para qué sirve y por qué sigue siendo importante en proyectos modernos, aunque no siempre sea obligatorio.

    📄 juncotic.com/entendiendo-el-ar

    #Python #Programación #PythonTips #AprenderPython

  29. 🐍 ¿Te genera dudas el archivo __init__.py en Python?

    En este artículo te cuento qué es, para qué sirve y por qué sigue siendo importante en proyectos modernos, aunque no siempre sea obligatorio.

    📄 juncotic.com/entendiendo-el-ar

    #Python #Programación #PythonTips #AprenderPython