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
Summary of python.pdf
2.3 MB
Summary of Python Cheat-Sheets

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

     
        
Thanks For Joining All ❤️
5
a = [1, 2, 3]
b = a[:]
b.append(4)
print(a)
3👍1
What will be the output of the following code?
Anonymous Quiz
54%
[1, 2, 3, 4]
31%
[1, 2, 3]
8%
[4]
7%
Error
3👍1
Convert PDF files to Excel files using Python

Don't Forget to give reactions❤️
7
python pattern notes.pdf
1.6 MB
Python Pattern Notes 🚀

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

     
        
Thanks For Joining All ❤️
3
for i in range(3):
print(i)
else:
print("Done")
4
What is the output of this code?
Anonymous Quiz
35%
0 1 2
45%
0 1 2 Done
5%
Done 0 1 2
15%
Error
3👏2
All Python Inbuilt Functions 👨‍💻

Don't Forget to give reactions❤️
3👍3
Clean Python.pdf
2.2 MB
Python Note's

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

     
        
Thanks For Joining All ❤️
7
x = [0, 1, 2, 3, 4]
print(x[::2])
What will be the output of the following code?
Anonymous Quiz
46%
[0, 2, 4]
16%
[1, 3]
17%
[0, 1, 2, 3, 4]
21%
Error
2👍2
5 Powerful Functions in Python 👨‍💻

Don't Forget to give reactions❤️
8👍2