python.land (@python_land) 's Twitter Profile
python.land

@python_land

Official account for python.land

ID: 1273926196191993857

linkhttps://python.land calendar_today19-06-2020 10:30:56

119 Tweet

113 Takipçi

1 Takip Edilen

python.land (@python_land) 's Twitter Profile Photo

Want to master Python? Get Python Fundamentals course now on sale! Learn the basics and beyond. Limited time offer! Follow the link to enroll now! python.land/product/python… #Python #coding #programming

Erik (@erikyan) 's Twitter Profile Photo

How would you prefer to learn a programming language (e.g., Python)? #programming #python #100DaysOfCode #twitterpoll

Erik (@erikyan) 's Twitter Profile Photo

Exception handling in #Python is the process of identifying and responding to errors in a program. In other words, it is a way to deal with errors that might occur in your program. Here's a TL;DR of exception handling

Exception handling in #Python is the process of identifying and responding to errors in a program. In other words, it is a way to deal with errors that might occur in your program. Here's a TL;DR of exception handling
Erik (@erikyan) 's Twitter Profile Photo

What is the most impressive thing you've used Python for or seen Python being used for? This can be anything from a small-scale library that impressed you to large projects or whatever else it is that impressed you most. #AskTwitter #Python #pythonprogramming

Erik (@erikyan) 's Twitter Profile Photo

With Python, we can return multiple values at once. All you need to do is list your values after the return statement, separated by commas. Click the link to try it interactively: crumb.sh/YVLsjts5j93

Erik (@erikyan) 's Twitter Profile Photo

Installing #Python packages system-wide can cause a lot of troubles once you upgrade your Python installation in the future. You can use pipx to save you from the drama that's usually involved with system-wide packages! Read about it here 👇 python.land/virtual-enviro…

Erik (@erikyan) 's Twitter Profile Photo

If you’ve been exploring the fascinating world of AI and generative AI (like ChatGPT), you’ve undoubtedly run into the term Python. So what exactly is Python, and why is it often linked with AI? Should you learn Python? 👇 #ChatGPT #ArtificialIntelligence #Python

python.land (@python_land) 's Twitter Profile Photo

🤖 Python #Trivia: The name 'Python' was not derived from the snake but from the British comedy series 'Monty Python’s Flying Circus'! 📺 What's your favorite Python fun fact? 🧠 #PythonProgramming #DidYouKnow

Erik (@erikyan) 's Twitter Profile Photo

🔄 Python’s itertools module is a collection of fast, memory-efficient tools that are useful for working with iterators (e.g., loops). Explore more: docs.python.org/3/library/iter… #Itertools #Coding #Developer

Erik (@erikyan) 's Twitter Profile Photo

🐍 #Python Tip: Want to remove the last letter from a word using slicing? Here's how: word = "Python" new_word = word[:-1] print(new_word) # Outputs 'Pytho' Learn more here: python.land/introduction-t…

Erik (@erikyan) 's Twitter Profile Photo

👀 Use Python’s built-in help() function! It's an interactive way to explore documentation and learn more about Python objects and modules in the Python REPL! 📚 Examples: help(str) import os help(os) help(os.path) etc.

Erik (@erikyan) 's Twitter Profile Photo

💡 Do you know #Python’s any() and all() functions? These are powerful tools for evaluating iterables! any() returns True if at least one element of an iterable is true. all() returns True only if all elements of an iterable are true.

python.land (@python_land) 's Twitter Profile Photo

With Pyenv, you can start using Python 3.12 right away since they've added it to their list of supported versions as soon as it came out. Learn more about Pyenv here 👇 python.land/virtual-enviro…