#pythonhacks نتائج البحث
Loop through the list to apply: 💡 "code" Neatly transform your text with minimal fuss! 🌟 #PythonHacks
Found a nifty way to return a export a whole bunch of state from a function as a Python object. 🐲🔥🤷♂️☕️ #PythonHacks
Dict comprehension: Similar to list comprehension, but for dictionaries. E.g., "new_dict = {k:v*2 for k, v in old_dict.items()}". A smart way to handle dictionaries! #PythonHacks (6/10)
In-place value swapping: Swap the values of two variables without a temp variable. Just type "a, b = b, a". This is Python's way of swapping. No extra variable needed! #PythonHacks (2/10)
#PythonHacks - One day i was stuck with 2 huge arrays and had to find common and non-common elements. #Numpy came to rescue - setdiff1d() and intersect1d() functions do just that #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
Strongly typed Python? You bet! Use typing for type hints and improve readability. Cleaner, safer code. #PythonHacks #CodeSmart
#PythonHacks - in #Pandas, because it is column major, a col -> row access is ~10x faster than row -> col... Wish I knew this earlier! #mindblown #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
#PythonHacks - When iterating #Pandas #DataFrame, using loc() instead of iloc() can boost performance by ~12x! Difference is due to how #python calculates memory address to retrieve an item #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
Code smarter, not longer! Unlock the power of these 6 Python techniques to write cleaner, shorter, and more efficient code. #PythonHacks #CodeEfficiently #LearnPython #ProgrammingTips #CodingMadeEasy
Pair data effortlessly with Python’s zip! Combine iterables into tuples for cleaner, faster code. Simple and powerful! #PythonHacks #CleanCode
#PythonHacks - I knew apply() function of #pandas and equivalent map() function for #numpy operations. But there's another great function - reduce() from #functools. Use it to apply operator on all elements #pythoncode #Python #learntocode #machinelearning #coders #100daysofcode
#PythonHacks - Can we improve performance of #Pandas #dataframe in row wise operations? Sure! #Numpy to the rescue! Convert df to np array, and it takes nano seconds instead of milli seconds to iterate!!! #pythoncode #Python #learntocode #machinelearning #coders #100daysofcode
#PythonHacks - random number generators are used everywhere. #Numpy made my life simple by offering super efficient functions like rand(), randint(), randn(), choice() etc #100daysofcode #Python #pythoncode #coders #learntocode #devcommunity #pythonlearning
#PythonHacks - do you want to time your code? Use a #Python generator. Any repetitive task can be decoupled and converted to a #generator. It can be re-used over any method, like below - #pythonlearning #pythoncode #learntocode #coders #devcommunity #100daysofcode
➡️ Simplify your code with this #Python trick: 🤖 Flatten a nested list using a list comprehension: flattened_list = [x for sublist in nested_list for x in sublist] #pythonhacks #codingtips
Yo, fam! Get this - instant summary stats in Sheets! 📊✨ Mean, median, min, max - Python's got you! No more boring formulas, just auto-magic! 🔥 #GoogleSheets #PythonHacks
#PythonHacks - Is #Lambda function better than traditional approach in #Python? Maybe not. But it is far convenient to use, and doesn't degrade performance much! Use it more often! #pythoncode #numpy #learntocode #machinelearning #coders #devcommunity #100daysofcode
Yo, fam! 🌍✨ Smash that translate button to turn your sheets into French, Spanish, or Japanese! 💥 Python and Google Translate API got your back! No more app-switching, just vibes! #PythonHacks #GoogleSheetsMagic
Classic python quirk: Modifying a list through a different name
Answer: A (yes, the list `a` gets modified!) Solution: Let's see what's happening under the hood. a = [2,4,6,8,9] creates a list with those values, and attaches the name `a` to it. b = a this looks up the list referenced by `a`, and gives it an additional name, `b`. So now +
11 Tips And Tricks To Write Better Python Code youtube.com/watch?v=8OKTAe…
youtube.com
YouTube
11 Tips And Tricks To Write Better Python Code
Top Python-Based Hacking Tools and Scripts tinyurl.com/28uutjuh
Overlooked typing features of recent Python versions: martynassubonis.substack.com/p/advanced-ove…
Free, interactive Python course Variables → Functions → OOP → Files → Testing → Advanced (decorators, iterators, typing). Run code in-browser: 8gwifi.org/tutorials/pyth… #Python #CodeNewbie #Dev #LearnToCode
Vibe coding lifehack: Let's say you need to run a Python script in a certain directory (for example, to modify all the files in it in a certain way or to move them around according to some logic), and you asked a chatbot to generate a Python script that does this. Instead of…
✨ Python Magic Methods: The Hidden Features of Python Just released a new video exploring one of the coolest parts of Python — magic methods (also known as dunder methods). These special methods let you customize how your objects behave with operators, built-ins, and even…
youtube.com
YouTube
Python Magic Methods: The Hidden Features of Python
PYTHON is difficult to learn, but not anymore! Introducing "The Ultimate Python ebook "PDF. You will get: • 74+ pages cheatsheet • Save 100+ hours on research And for 48 hrs, it's 100% FREE! To get it, just: 1. Like & RT 2. Reply "Python"
Python Full Course for Beginners teacherdadaplus.com/course/it-and-… #python #tips #skills #bootcamp #development #courses #elearning #world #motivation #courses #edtech #usa #uk #software #programming #ai #harisystems
PyStrict-strict-python: Ultra-Strict Python Project Template github.com/Ranteck/PyStri…
💥 🛠️ PYTHON | URL shortner 🛠️ 💥 #100DaysofCode #infosec #linux #webdev #devops #devsecops #database coder1life.blogspot.com/2023/03/python… ❤️ tech life
Python is difficult to learn, but not anymore! Introducing Complete Python Training Course, All formulas, Tips & Tricks , shortcuts Absolutely Free It helps you to save 80% time and money To get it, just: 👉 Like and Repost 👉Comment "DM" 👉Follow me
🎬 Still waiting for your Sora invite? Try Apob AI ReVideo — it’s already generating 30-second AI K-pop dance videos that move like the real idols. 💃✨ Perfect for creators who want rhythm, style, and longer clips — no limits, just vibes. Click 👉mega.apob.ai/Jihad
Learn how to use Artificial Intelligence to accelerate Python development for hacking tools and automation. hackers-arise.com/using-artifici… @three_cube @_aircorridor
Master Python programming as quickly as possible, no abstract theory, no useless concepts, straight to the practice: raspberrytips.com/tw-python #python
🐍 Python's Magic Methods: Leverage Their Power in Your Classes 📰 #python realpython.com/python-magic-m…
realpython.com
Python's Magic Methods: Leverage Their Power in Your Classes – Real Python
In this tutorial, you'll learn what magic methods are in Python, how they work, and how to use them in your custom classes to support powerful features in your object-oriented code.
Dict comprehension: Similar to list comprehension, but for dictionaries. E.g., "new_dict = {k:v*2 for k, v in old_dict.items()}". A smart way to handle dictionaries! #PythonHacks (6/10)
In-place value swapping: Swap the values of two variables without a temp variable. Just type "a, b = b, a". This is Python's way of swapping. No extra variable needed! #PythonHacks (2/10)
#PythonHacks - One day i was stuck with 2 huge arrays and had to find common and non-common elements. #Numpy came to rescue - setdiff1d() and intersect1d() functions do just that #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
Loop through the list to apply: 💡 "code" Neatly transform your text with minimal fuss! 🌟 #PythonHacks
#PythonHacks - in #Pandas, because it is column major, a col -> row access is ~10x faster than row -> col... Wish I knew this earlier! #mindblown #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
➡️ Simplify your code with this #Python trick: 🤖 Flatten a nested list using a list comprehension: flattened_list = [x for sublist in nested_list for x in sublist] #pythonhacks #codingtips
#PythonHacks - When iterating #Pandas #DataFrame, using loc() instead of iloc() can boost performance by ~12x! Difference is due to how #python calculates memory address to retrieve an item #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
#PythonHacks - do you want to time your code? Use a #Python generator. Any repetitive task can be decoupled and converted to a #generator. It can be re-used over any method, like below - #pythonlearning #pythoncode #learntocode #coders #devcommunity #100daysofcode
Code smarter, not longer! Unlock the power of these 6 Python techniques to write cleaner, shorter, and more efficient code. #PythonHacks #CodeEfficiently #LearnPython #ProgrammingTips #CodingMadeEasy
#PythonHacks - random number generators are used everywhere. #Numpy made my life simple by offering super efficient functions like rand(), randint(), randn(), choice() etc #100daysofcode #Python #pythoncode #coders #learntocode #devcommunity #pythonlearning
Strongly typed Python? You bet! Use typing for type hints and improve readability. Cleaner, safer code. #PythonHacks #CodeSmart
#PythonHacks - Can we improve performance of #Pandas #dataframe in row wise operations? Sure! #Numpy to the rescue! Convert df to np array, and it takes nano seconds instead of milli seconds to iterate!!! #pythoncode #Python #learntocode #machinelearning #coders #100daysofcode
#PythonHacks - I knew apply() function of #pandas and equivalent map() function for #numpy operations. But there's another great function - reduce() from #functools. Use it to apply operator on all elements #pythoncode #Python #learntocode #machinelearning #coders #100daysofcode
Found a nifty way to return a export a whole bunch of state from a function as a Python object. 🐲🔥🤷♂️☕️ #PythonHacks
Pair data effortlessly with Python’s zip! Combine iterables into tuples for cleaner, faster code. Simple and powerful! #PythonHacks #CleanCode
#PythonHacks - Ever stuck with filtering arrays based on a condition? #Numpy to the rescue. Use where fn to extract data based on conditions #pythoncode #Python #learntocode #machinelearning #coders #devcommunity #100daysofcode
#PythonHacks - ever felt the need to strip all string columns in pandas? there's a simple solution. First select all string (object) columns and then use a lambda function. Do you know a better way? #pandas #pythonlearning #pythoncode #Python #machinelearning #100daysofcode
#PythonHacks - Is #Lambda function better than traditional approach in #Python? Maybe not. But it is far convenient to use, and doesn't degrade performance much! Use it more often! #pythoncode #numpy #learntocode #machinelearning #coders #devcommunity #100daysofcode
#PythonHacks - My efficiency boosted after learning #Numpy functions. One of the ways you can convert multi-dimensional arrays to 1d is by using flatten() fn. #pythoncode #Python #learntocode #devcommunity #100daysofcode #machinelearning #coders
Something went wrong.
Something went wrong.
United States Trends
- 1. The BONK 83.5K posts
- 2. Good Thursday 30.1K posts
- 3. #thursdayvibes 1,561 posts
- 4. #PiratasDelImperio N/A
- 5. Happy Friday Eve N/A
- 6. Godzilla 24.8K posts
- 7. Usher 4,076 posts
- 8. Trey Songz N/A
- 9. Shaggy 2,454 posts
- 10. JUNGKOOK FOR CHANEL BEAUTY 134K posts
- 11. Doug Dimmadome 14.6K posts
- 12. Dolly 14.6K posts
- 13. #ThursdayThoughts 1,983 posts
- 14. #thursdaymotivation 2,187 posts
- 15. Lakers 48K posts
- 16. Oracle 22K posts
- 17. Lupin 3,768 posts
- 18. #PutThatInYourPipe N/A
- 19. Confessions 4,982 posts
- 20. Code Pink 2,915 posts