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
Give Your Answer in The Comment Box 📥


Don't Forget to give reactions❤️
2👍2
time_to_load_website.py
1.1 KB
Time To Load Website in Python 👨‍💻

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

     
        
Thanks For Joining All ❤️
👍31👏1
x = [1, 2, 3, 4]
x.reverse()
print(x)
2👍1
What will the following code do?
Anonymous Quiz
10%
[1, 2, 3, 4]
86%
[4, 3, 2, 1]
2%
None
2%
Error
3👍2
Python roadmap 🚀

Don't Forget to give reactions❤️
3👍2🥰1👌1
IntermediatePython.pdf
1 MB
Intermediate Python 👨‍💻

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

     
        
Thanks For Joining All ❤️
5👍1🥰1
x = [10, 20, 30]
y = x.index(20)
print(y)
2👍2
What will be the output of the following code?
Anonymous Quiz
69%
1
17%
2
7%
Error
7%
None
6
Give Your Answer in The Comment Box 📥


Don't Forget to give reactions❤️
7🔥2
A_Practical_Introduction_to_Python_Programming_Heinold.pdf
2 MB
A Practical Introduction to Python Programming 👨‍💻

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

     
        
Thanks For Joining All ❤️
2🥰1
x = {"a": 1, "b": 2, "c": 3}
print(x.get("b"))
5
What is the output of this code?
Anonymous Quiz
82%
2
14%
"b"
2%
None
2%
Error
3
Python Quiz 🤓

Give Your Answer in The Comment Box 📥


Don't Forget to give reactions❤️
3
Project_Guides_Big_Tech.pdf
4.4 KB
Project Guides Big Tech 🚀

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

     
        
Thanks For Joining All ❤️
3
x = (1, 2, 3)
y = x + (4,)
print(y)
3
What will be the result of this code?
Anonymous Quiz
56%
(1, 2, 3, 4)
16%
[1, 2, 3, 4]
5%
(1, 2, 3)
23%
Error
3👍1
Give Your Answer in The Comment Box 📥


Don't Forget to give reactions❤️
4🔥2👏1
Beginning Programming with Python For Dummies.pdf
8.6 MB
Beginning Programming With Python 👨‍💻

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

     
        
Thanks For Joining All ❤️
7👍2👏1
x = list(range(1, 6))
y = sum(x)
print(y)
3
What will this code produce?
Anonymous Quiz
49%
15
7%
10
31%
[1, 2, 3, 4, 5]
12%
Error
5