@repo_science · Post #3285 · 11/06/2023, 15:28
#python 🐍 Architecture Patterns with Python ⛓Read the book for Free ⛓Github ----- Main channel:@repo_science Coupons:@freecoupons_reposcience -----
Hashtags
TGINSIGHT SIMILAR POSTS
Canal fuente @python_academy · Post #2161 · 7 sept
Использование функции zip в Python Функция zip в Python формирует итератор, объединяющий элементы из несколькихсписков. Это удобно для одновременного перебора элементов несколькихсписков в цикле for или для реализации параллельнойсортировки. Пример: # Допустим, у нас есть два списка list1 = [1, 2, 3] list2 = ['a', 'b', 'c'] # Используем функцию zip для объединения этих списков zipped = zip(list1, list2) # Теперь мы можем перебрать объединенные элементы for num, letter in zipped: print(f"Число: {num}, Буква: {letter}") # Вывод: # Число: 1, Буква: a # Число: 2, Буква: b # Число: 3, Буква: c #python#zip
Búsqueda global general
@repo_science · Post #3285 · 11/06/2023, 15:28
#python 🐍 Architecture Patterns with Python ⛓Read the book for Free ⛓Github ----- Main channel:@repo_science Coupons:@freecoupons_reposcience -----
Hashtags
@repo_science · Post #3194 · 16/05/2023, 13:59
#Python 🐍 Python Essential Training Get a comprehensive overview of the Python programming language and gain enough command of Python 3 to create well-designed scripts and maintain existing projects. 🗣️: Ryan Mitchell ⌛4h 22m 🔗Link ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----
Hashtags
@repo_science · Post #3183 · 13/05/2023, 02:40
#Python 🐍 Python Cheat Sheet 🔗Link ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----
Hashtags
@repo_science · Post #3152 · 07/05/2023, 01:17
#Python 🐍 Learn to Code with Python The complete Python bootcamp for 2023. Learn Python 3 from beginner to expert. Build complete Python applications. 🗣️: Boris Paskhaver ⭐4.7 - 4934 votes 🔗Link ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----
Hashtags
@repo_science · Post #3144 · 05/05/2023, 14:26
#Python 🐍 The Python Mega Course: Build 10 Real World Applications Become a Python programmer by learning how to build any Python program from scratch, GUIs, web apps, APIs, and more. 🌟 4.6 - 57462 votes 💰 $84.99 🗣️: Ardit Sulce 🔗Link ----- Main channel:@repo_science Coupons:@freecoupons_reposcience -----
Hashtags
@repo_science · Post #3138 · 04/05/2023, 12:16
#Python 🐍 Intermediate Python: Solidify your Python Understanding And Build Apps Let us build our understanding even better working with Python hands-on 🔗Link ----- Canal principal:@repo_science Cupones:@freecoupons_reposcience -----
Hashtags
@repo_science · Post #3128 · 03/05/2023, 05:06
#Python 🐍 Como todos conocen #Python es un lenguaje de alto nivel de programación e interpretado cuya filosofía hace hincapié en la legibilidad de su código y se utiliza para desarrollar aplicaciones de todo tipo. A sugerencia de ustedes hemos creado un grupo donde recopilaremos todo el material disponible agrupado por temas, al que pueden unirse aquí: 👇 🔗Link ----- Canal principal: @repo_science Cupones: @freecoupons_reposcience -----
Hashtags
@amneumarkt · Post #667 · 24/03/2025, 18:54
#python Our internet is broken again, and this time by Python setuptools. [BUG] Version 78.0.1 breaks install of ansible-vault package · Issue #4910 · pypa/setuptools https://github.com/pypa/setuptools/issues/4910
Hashtags
@amneumarkt · Post #562 · 21/03/2024, 19:34
#python I had the wrong idea for a long time that IDEs treat method/function without return type hint as returning None type. I was wrong. In PEP484, it says IDE should treat such a method/function as a type that is as general as possible. Ah that just makes sense. https://peps.python.org/pep-0484/#the-meaning-of-annotations
Hashtags
@amneumarkt · Post #406 · 15/09/2022, 15:16
#python Faster conda https://www.anaconda.com/blog/a-faster-conda-for-a-growing-community
Hashtags
@amneumarkt · Post #381 · 21/07/2022, 21:04
#python Guidelines for research coding. It is not the highest standard but is easy to follow. https://goodresearch.dev/
Hashtags
@amneumarkt · Post #356 · 14/05/2022, 11:46
#python This post is a retro on how I learned Python. Disclaimer: I can not claim that I am a master of Python. This post is a retrospective of how I learned Python in different stages. I started using Python back in 2012. Before this, I was mostly a Matlab/C user. Python is easy to get started, yet it is hard to master. People coming from other languages can easily make it work but will write some "disgusting" python code. And this is because Python people talk about "pythonic" all the time. Instead of being an actual style guide, it is rather a philosophy of styles. When we get started, we are most likely not interested in [PEP8](https://peps.python.org/pep-0008/) and [PEP257](https://peps.python.org/pep-0257/). Instead, we focus on making things work. After some lectures from the university (or whatever sources), we started to get some sense of styles. Following these lectures, people will probably write code and use Python in some projects. Then we began to realize that Python is strange, sometimes even doesn't make sense. Then we started leaning about the philosophy behind it. At some point, we will get some peer reviews and probably fight against each other on some philosophies we accumulated throughout the years. The attached drawing (in comments) somehow captures this path that I went through. It is not a monotonic path of any sort. This path is most likely to be permutation invariant and cyclic. But the bottom line is that mastering Python requires a lot of struggle, fights, and relearning. And one of the most effective methods is peer review, just as in any other learning task in our life. Peer review makes us think, and it is very important to find some good reviewers. Don't just stay in a silo and admire our own code. To me, the whole journey helped me building one of the most important philosophies of my life: embrace open source and collaborate.
Hashtags