Erik
eriky.bsky.social
Erik
@eriky.bsky.social
Instructor and owner at https://python.land
Reposted by Erik
Processing #Excel sheets with Python is an everyday use case for many and can boost office efficiency. This Python Land article teaches you how to create, read, update, and delete data in Excel files using #Python

python.land/data-process...
How to Process Excel Data in Python and Pandas • Python Land Tutorial
This article shows how to create and read Excel files in Python using the pandas, xlsxwriter, and openpyxl modules.
python.land
November 12, 2024 at 9:14 AM
Reposted by Erik
With Pyenv you can play around with Python 3.12 since they've added it to their list of supported versions as soon as it came out. Learn more about Pyenv here 👇
PyEnv: Managing Multiple Python Versions With Ease
PyEnv is a tool that allows Python users to switch between multiple versions with ease. Learn how to use PyEnv to your advantage
python.land
October 4, 2023 at 8:32 PM
Reposted by Erik
💡 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.
October 4, 2023 at 8:09 PM
Reposted by Erik
🐍 #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 String: Working With Text
Learn what a Python string is, how to create strings, which quotes to use when creating them, and how to perform operations on a string.
python.land
October 3, 2023 at 11:54 AM
Reposted by Erik
🤖 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? 🧠
October 1, 2023 at 6:55 PM