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
Python For Beginners Easy and Detailed Guide 2024

Don't Forget to give reactions❤️
9👍1
rock_paper_scissor_game.py
2.2 KB
GUI Rock Paper Scissor Game in Python 🎮

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

     
        
Thanks For Joining All ❤️
6
def mystery(a, b, c):
return a + b * c

print(mystery(2, 3, 4))
2
What will be the output of the following code?
Anonymous Quiz
28%
20
57%
14
11%
24
5%
9
3
10 Different Data Charts Using Python 🐍

Don't Forget to give reactions❤️
2🥰1
spell_checker.py
402 B
Spell Checker In Python 🔎 📖

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

     
        
Thanks For Joining All ❤️
2
x = {"a": 1, "b": 2}
y = x
y["c"] = 3
print(x)
3👏1
What will be the output of the following code?
Anonymous Quiz
13%
{"a": 1, "b": 2}
69%
{"a": 1, "b": 2, "c": 3}
9%
{"c": 3}
8%
Error
3
Matrix Problem in Python 🐍

Don't Forget to give reactions❤️
4
Data scientist interview questions .pdf
329.7 KB
Data Scientist Interview Question

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

     
        
Thanks For Joining All ❤️
4
Which of the following will produce a tuple with only one element, containing the value 5?
Anonymous Quiz
27%
(5,)
39%
(5)
19%
[5]
16%
{5}
3