Python Learning
5.92K subscribers
426 photos
1 video
59 files
106 links
Python Coding resources, Cheat Sheets & Quizzes! 🧑‍💻

Free courses: @bigdataspecialist

@datascience_bds
@github_repositories_bds
@coding_interview_preparation
@tech_news_bds

DMCA: @disclosure_bds

Contact: @mldatascientist
Download Telegram
Tuples in Python
👍8🔥1
x = {"a": 1, "b": 2}
print("c" in x)
3
What will be the output of the following code?
Anonymous Quiz
11%
True
45%
False
34%
Error
10%
None
4
Variables in Python

Don't Forget to give reactions❤️
8👍3👏2🔥1
google_logo.py
1.5 KB
Google in Python 🐍

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

     
        
Thanks For Joining All ❤️
5👍4
x = (1, 2, 3)
x += (4, 5)
print(x)
2
What is the output of this code snippet?
Anonymous Quiz
56%
(1, 2, 3, 4, 5)
15%
[1, 2, 3, 4, 5]
25%
Error
4%
None
3👍2