Python Learning
Open in Telegram
Python learning resources Beginner to advanced Python guides, cheatsheets, books and projects. For data science, backend and automation. Join π https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
Show more5 792
Subscribers
No data24 hours
-27 days
-4030 days
Posts Archive
5 793
Round 4 of our programming quiz league is officially over.
π Top results in the quiz ROUND 4: 'Database Management System Quiz'
π 8 questions
β± 45 seconds per question
π€ 106 people took the quiz
π₯ @zed_anon β 8 (16.6 sec)
π₯ @divyashaktipal β 8 (18.3 sec)
π₯ @Shark_020 β 8 (23.2 sec)
4. RAJ SINGH SODHA β 8 (1 min 18 sec)
5. @Jaiswal_Pranav β 7 (44.6 sec)
6. @jylim0208 β 7 (47.3 sec)
7. Suhas β 7 (56.8 sec)
8. Hamza Mushtaq β 7 (1 min 2 sec)
9. @bitSurfer21 β 7 (1 min 2 sec)
10. Anonymous β 7 (1 min 4 sec))
See entire list for this round and all previous rounds here.
New round:
Round 5: Python Quiz
https://t.me/QuizBot?start=0GfRU80S
Good luck!
5 793
Greetings,
Results for 3rd round of our Programming Quiz League have been updated.
Here is how top 25 currently looks like. For more detailed list, check this google sheet.
Next quiz, round 4 is:
Database Management System Quiz: http://t.me/QuizBot?start=DpGHU079
Good luck π
5 793
Python Functions Cheat sheet
A function is a block of organized code that is used to perform a single task. They provide better modularity for your application and reuse-ability.
π Article Link
5 793
Crawl Websites Using Python
In this notebook, I will go over a simpler Python scraper.
Notebook Link
#Python
βββββββββββββ
Join @python_bds for more
5 793
Python Cheat Sheet sent few days ago was blurry so I hope it's better this time.
5 793
Which of the following is used to define a block of code in Python language?
5 793
Python tricks and tips
Section 2: Strings
Lesson 8: Printing out multiple values of strings
Code snippet to copy:
print(βonβ*3+β β+βoffβ*2)
5 793
Chaining Of Comparison Operators
Code snippet to copy:
n = 10
result = 1 < n < 20
print(result)
result = 1 > n <= 9
print(result)
5 793
Participate in free programming knowledge quiz league!
Hey guys, we in big data specialist community created first programming league! We will have quizzes every week, you will gain points by giving right answers, and after 10 weeks we will have our winner! This should be really fun and we should learn something new.
First round - General programming knowledge quiz
Quiz link: http://t.me/QuizBot?start=7FcREcyF
Tomorrow is next round starting and you will no longer be able to take first round so hurry up π
Here you can find more info and track leaderboards:
https://docs.google.com/spreadsheets/d/1wF9oHAI5KBtr9c85QLTKObClYpXwtRYouK5iAQs9z74/edit?usp=sharing
Join https://t.me/bigdataspecialist to get notified about next rounds. You can also find valuable programming learning materials here and ask any programming related questions you have.
5 793
Python tricks and tips
Section 6: Dictionary
Lesson 15: Merging multiple dictionaries
Code snippet to copy:
x = {'a': 1, 'b': 2}
y = {'b': 3, 'c': 4}
z = {**x, **y}
print(z)5 793
Python Notes Basics of Python programming
π 29 pages
#Python
βββββββββββββ
Join @python_bds for more
5 793
Python tricks and tips
Section 6: Dictionary
Lesson 14: Iterating value pairs and dictionary keys
Code snippet to copy:
dict1={βaβ: 1, βbβ: 2, βcβ: 3, βdβ: 4, βeβ: 5, βfβ: 6}
for a, b in dict1.iteritems():
print (β{: {}β.format(a,b))
