Top 10 Python Programs for Students

 

Top 10 Python Programs for Students

Python is one of the easiest programming languages for students to learn. Practicing basic programs helps in building strong logic and problem-solving skills.

๐Ÿ”น 1. Print Hello World

print("Hello World")

๐Ÿ”น 2. Addition of Two Numbers

a = 10
b = 20
print(a + b)

๐Ÿ”น 3. Check Even or Odd

num = 5
if num % 2 == 0:
    print("Even")
else:
    print("Odd")

๐Ÿ”น 4. Find Largest Number

a, b, c = 10, 20, 15
print(max(a, b, c))

๐Ÿ”น 5. Factorial Program

n = 5
fact = 1
for i in range(1, n+1):
    fact *= i
print(fact)

๐Ÿ”น 6. Fibonacci Series

a, b = 0, 1
for i in range(5):
    print(a)
    a, b = b, a+b

๐Ÿ”น 7. Reverse a String

text = "Python"
print(text[::-1])

๐Ÿ”น 8. Check Prime Number

num = 7
for i in range(2, num):
    if num % i == 0:
        print("Not Prime")
        break
else:
    print("Prime")

๐Ÿ”น 9. Count Vowels

text = "education"
count = sum(1 for char in text if char in "aeiou")
print(count)

๐Ÿ”น 10. Simple Calculator

a = 10
b = 5
print("Add:", a+b)
print("Sub:", a-b)
print("Mul:", a*b)
print("Div:", a/b)

๐Ÿงพ Conclusion

Practicing these programs will strengthen your basics and prepare you for interviews and exams.

Comments