Python Learning
5.85K subscribers
547 photos
2 videos
87 files
121 links
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
Download Telegram
Python Notes

πŸ“„ 40 pages

πŸ”— Book link

#Python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more
πŸ‘4
Python Strings Cheat Sheet
πŸ‘5
Python tricks and tips
Section 6: Dictionary
Lesson 13: Inverting the Dictionary

Code snippet to copy:
dict1={β€˜a’: 1, β€˜b’: 2,β€˜c’: 3,β€˜d’: 4,β€˜e’: 5,β€˜f’: 6, β€˜g’: 7}
dict2={v: k for k, v in dict1.items()}
print(dict2)
All keywords in Python are in _________
Anonymous Quiz
15%
Capitalized
53%
lower case
5%
UPPER CASE
28%
None of the mentioned
πŸ‘5
Software Engine Usage
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))
Python_Notes_Basics_of_Python_programmin.pdf
83.8 KB
Python Notes Basics of Python programming

πŸ“„ 29 pages

#Python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more
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)
Features of Python
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.
πŸ”₯6πŸ‘1
Chaining Of Comparison Operators

Code snippet to copy:
n = 10
result = 1 < n < 20
print(result)
result = 1 > n <= 9
print(result)

Output:
True
False
❀8
General python usage
Python tricks and tips
Section 2: Strings
Lesson 8: Printing out multiple values of strings

Code snippet to copy:
print(β€œon”*3+’ β€˜+”off”*2)
Python 3 cheat sheet
πŸ‘4
Which of the following is used to define a block of code in Python language?
Anonymous Quiz
52%
Indentation
3%
Key
14%
Brackets
31%
All of these
πŸ‘4
Python’s Popularity β€” What Stats Say?
πŸ‘6
image_2022-11-07_11-53-01.png
2.3 MB
Python Cheat Sheet sent few days ago was blurry so I hope it's better this time.
πŸ‘10
Crawl Websites Using Python

In
this notebook, I will go over a simpler Python scraper.

Notebook Link

#Python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more
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
πŸ‘2