Tuesday, 18 February 2025

25 Insanely Useful Python Code Snippets For Everyday Problems

 


📝 1. Swap Two Variables Without a Temp Variable


a, b = 5, 10
a, b = b, a
print(a, b)

Output:

10 5

📏 2. Check if a String is a Palindrome


def is_palindrome(s):
return s == s[::-1]
print(is_palindrome("madam"))

Output:


True

🔢 3. Find the Factorial of a Number

from math import factorial
print(factorial(5))

Output:

120

🎲 4. Generate a Random Password


import secrets, string
def random_password(length=10): chars = string.ascii_letters + string.digits + string.punctuation return ''.join(secrets.choice(chars) for _ in range(length))
print(random_password())

Output:


e.g., "A9$uT1#xQ%"

🔄 5. Flatten a Nested List


def flatten(lst):
return [i for sublist in lst for i in sublist]
print(flatten([[1, 2], [3, 4]]))

Output:


[1, 2, 3, 4]

🎭 6. Check if Two Strings are Anagrams


from collections import Counter
def is_anagram(s1, s2):
return Counter(s1) == Counter(s2)

print(is_anagram("listen", "silent"))

Output:


True

🛠️ 7. Merge Two Dictionaries

d1, d2 = {'a': 1}, {'b': 2}
merged = {**d1, **d2}
print(merged)

Output:

{'a': 1, 'b': 2}

📅 8. Get the Current Date and Time

from datetime import datetime
print(datetime.now())

Output:


2025-02-18 14:30:45.123456

🏃 9. Find Execution Time of a Function

import time
start = time.time() time.sleep(1)
print(time.time() - start)

Output:


1.001234 (approx.)

📂 10. Get the Size of a File

import os
print(os.path.getsize("example.txt"))

Output:


e.g., 1024 (size in bytes)

🔎 11. Find the Most Frequent Element in a List


from collections import Counter
def most_frequent(lst): return Counter(lst).most_common(1)[0][0]

print(most_frequent([1, 2, 3, 1, 2, 1]))

Output:

1

🔢 12. Generate Fibonacci Sequence


def fibonacci(n):
a, b = 0, 1 for _ in range(n): yield a a, b = b, a + b

print(list(fibonacci(10)))

Output:


[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]

🔄 13. Reverse a List in One Line


lst = [1, 2, 3, 4]
print(lst[::-1])

Output:

[4, 3, 2, 1]

🔍 14. Find Unique Elements in a List

print(list(set([1, 2, 2, 3, 4, 4])))

Output:

[1, 2, 3, 4]

🎯 15. Check if a Number is Prime


def is_prime(n):
return n > 1 and all(n % i for i in range(2, int(n**0.5) + 1))

print(is_prime(7))

Output:

True

📜 16. Read a File in One Line


print(open("example.txt").read())

Output:


Contents of the file

📝 17. Count Words in a String

def word_count(s):
return len(s.split())

print(word_count("Hello world!"))

Output:

2

🔄 18. Convert a List to a Comma-Separated String

lst = ["apple", "banana", "cherry"]
print(", ".join(lst))

Output:

apple, banana, cherry

🔀 19. Shuffle a List Randomly

import random
lst = [1, 2, 3, 4] random.shuffle(lst)
print(lst)

Output:

e.g., [3, 1, 4, 2]

🔢 20. Convert a List of Strings to Integers

lst = ["1", "2", "3"]
print(list(map(int, lst)))

Output:

[1, 2, 3]

🔗 21. Get the Extension of a File

print("example.txt".split(".")[-1])

Output:

txt

📧 22. Validate an Email Address


import re
def is_valid_email(email): return bool(re.match(r"[^@]+@[^@]+\.[^@]+", email))

print(is_valid_email("test@example.com"))

Output:


True

📏 23. Find the Length of the Longest Word in a Sentence


def longest_word_length(s):
return max(map(len, s.split()))

print(longest_word_length("Python is awesome"))

Output:

7

🔠 24. Capitalize the First Letter of Each Word

print("hello world".title())

Output:


Hello World

🖥️ 25. Get the CPU Usage Percentage


import psutil
print(psutil.cpu_percent(interval=1))

Output:

e.g., 23.4

Related Posts:

0 Comments:

Post a Comment

Popular Posts

Categories

100 Python Programs for Beginner (98) AI (39) Android (24) AngularJS (1) Api (2) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (197) C (77) C# (12) C++ (83) Course (67) Coursera (251) Cybersecurity (25) Data Analysis (3) Data Analytics (3) data management (11) Data Science (149) Data Strucures (8) Deep Learning (21) Django (16) Downloads (3) edx (2) Engineering (14) Euron (29) Events (6) Excel (13) Factorial (1) Finance (6) flask (3) flutter (1) FPL (17) Generative AI (11) Google (36) Hadoop (3) HTML Quiz (1) HTML&CSS (47) IBM (30) IoT (1) IS (25) Java (93) Java quiz (1) Leet Code (4) Machine Learning (85) Meta (22) MICHIGAN (5) microsoft (4) Nvidia (4) Pandas (4) PHP (20) Projects (29) pyth (1) Python (1048) Python Coding Challenge (456) Python Quiz (122) Python Tips (5) Questions (2) R (70) React (6) Scripting (3) security (3) Selenium Webdriver (4) Software (17) SQL (42) UX Research (1) web application (8) Web development (4) web scraping (2)

Followers

Python Coding for Kids ( Free Demo for Everyone)