π
Faster pandas
π Author: Miki Tebeka
π° Level: Advanced
β° Duration: 1h 24m
π Topics: Pandas
π€ Join Learn Python for more courses
π Learn how to make your pandas code quicker and more efficient. This course covers vectorization, common mistakes, pandas performance, saving memory, Numba, Cython, and more.
Please open Telegram to view this post
VIEW IN TELEGRAM
π32π₯°3β€2
π
More Python Tips, Tricks, and Techniques for Data Science
π Author: Harshit Tyagi
π° Level: Intermediate
β° Duration: 2h 15m
π Topics: Data Science, Python
π€ Join Data Analysis and Databases for more courses
π Deliver valuable insights to your users with Python. Get practical tips and techniques that can help you enhance your Python data science workflow.
Please open Telegram to view this post
VIEW IN TELEGRAM
π15β€5π₯1
Please open Telegram to view this post
VIEW IN TELEGRAM
β‘14π6β€2
π This Python program checks if a given word or phrase is a palindrome (reads the same backward as forward)!
def is_palindrome(text):
clean_text = ''.join(char.lower() for char in text if char.isalnum())
return clean_text == clean_text[::-1]
text = "A man, a plan, a canal: Panama"
print("Is Palindrome:", is_palindrome(text))
β¨ Example Output:
Is Palindrome: True
Please open Telegram to view this post
VIEW IN TELEGRAM
π61β€11π₯6π€2
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯54π15β€7π«‘4
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯23π21β€12π₯°2
Please open Telegram to view this post
VIEW IN TELEGRAM
π44β€8π₯2
π47π20π€15π₯°10
π
Using SQL with Python
π Author: Bill Weinman
π° Level: Intermediate
β° Duration: 1h 39m
π Topics: SQL, Python
π€ Join Learn Python for more courses
π If you already know SQL and Python, learn the power of using these two languages together.
Please open Telegram to view this post
VIEW IN TELEGRAM
π27β€5
Are you familiar with SQL? Do you know Python? Are you interested in understanding how these two languages work together? Then join Bill Weinman in this course as he shows the power of these two languages combined. Bill starts with some basicsβconnecting to a database, performing simple queries, and reading rows from a table. He covers how to use prepared statements and cursors, how to build a wrapper class to streamline the SQL interface and support multiple different database engines, and how to build a CRUD class and a full-featured web application using what you've learned. Many applications require a combination of SQL and Python, and after finishing Bills course, youll have a better understanding of why and how you can leverage the power of these two languages together.
Please open Telegram to view this post
VIEW IN TELEGRAM
π16β€3π2