Python Programming
1.75K subscribers
592 photos
2 videos
190 files
8 links
Learning Python programming is easy! πŸ”₯

🎯 Free project tutorials


πŸ† Daily quiz and Weekly Quiz Challenge

πŸš€ Hands-on guides


Learn to build projects from small to large and improve your skills!

Support My Work: https://buymeacoffee.com/mdsabbirahma
Download Telegram
100+ Basic To Advance Python Programmes πŸš€

Don't Forget to give reactions❀️
❀5πŸ”₯1
Python Interview Questions – Part 1

1. What is Python?
Python is a high-level, interpreted programming language known for its readability and wide range of libraries.

2. Is Python statically typed or dynamically typed?
Dynamically typed. You don't need to declare data types explicitly.

3. What is the difference between a list and a tuple?

List is mutable, can be modified.

Tuple is immutable, cannot be changed after creation.


4. What is indentation in Python?
Indentation is used to define blocks of code. Python strictly relies on indentation instead of brackets {}.

5. What is the output of this code?

x = [1, 2, 3] 
print(x * 2)

Answer: [1, 2, 3, 1, 2, 3]

6. Write a Python program to check if a number is even or odd.

num = int(input("Enter number: ")) 
if num % 2 == 0: 
    print("Even") 
else: 
    print("Odd")

7. What is a Python dictionary?
A collection of key-value pairs. Example:

person = {"name": "Alice", "age": 25}

8. Write a function to return the square of a number.

def square(n): 
    return n * n


ENJOY LEARNING πŸ‘πŸ‘

Do not forget to React ❀️  to this Message for More Content Like this

     
        
Thanks For Joining All ❀️
❀4πŸ₯°1
What is the default return value of a function in Python if there is no return statement?
Anonymous Quiz
10%
False
28%
null
18%
0
43%
None
❀4πŸ‘2
Boost your python speed by 300% πŸš€

Don't Forget to give reactions❀️
❀3πŸ₯°1
DATA STRUCTURES IN PYTHON.pdf
3.9 MB
Data Structures In Python πŸš€

Do not forget to React ❀️  to this Message for More Content Like this

     
        
Thanks For Joining All ❀️
πŸ”₯4❀3πŸ₯°1
Which keyword is used to create a class in Python?
Anonymous Quiz
12%
function
73%
class
10%
object
5%
type
❀3πŸ‘1
Backend Developer Complete Roadmap πŸš€

Don't Forget to give reactions❀️
❀6πŸ”₯1
Dear brothers and sisters,

Every day, I try my best to share something useful with you β€” whether it's quizzes, cheat sheets, project resources, or valuable learning materials. I do it purely out of passion, hoping it helps you learn something new and move a little closer to your goals. ❀️

If you feel that my efforts have been helpful in any way,
you can treat me to a cup of tea as a little brother’s token of appreciation. πŸ₯Ήβ˜•

Your small gesture of support will truly encourage me to keep going and share even more valuable resources, In Sha Allah.

πŸ‘‡ Click here to support:
πŸ”— Buy Me a Coffee?

With love and prayers,
β€” Your little brother πŸ₯°
❀10πŸ”₯1πŸ₯°1
Data Structures and Algorithms in Python (1).pdf
5.6 MB
Data Structures and Algorithm in Python πŸš€

Do not forget to React ❀️  to this Message for More Content Like this

     
        
Thanks For Joining All ❀️
❀7πŸ”₯2πŸ₯°1