ru
Feedback
Python Learning

Python Learning

Открыть в 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

Больше
5 850
Подписчики
+1124 часа
+67 дней
+730 день
Архив постов
All keywords in Python are in _________
Anonymous voting

Python tricks and tips Section 6: Dictionary Lesson 13: Inverting the Dictionary Code snippet to copy: dict1={‘a’: 1, ‘b’: 2,
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)

Python Strings Cheat Sheet
Python Strings Cheat Sheet

Python tricks and tips Section 4: Operators Lesson 12: Chaining comparison operators Code snippet to copy: a = 17 b = 21 c =
Python tricks and tips Section 4: Operators Lesson 12: Chaining comparison operators Code snippet to copy: a = 17 b = 21 c = 11 print(c < a) print(a < b)

Python Notes 📄 40 pages 🔗 Book link #Python ➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @python_bds for more

Python tricks and tips Section 3: Matrix Lesson 11: Transposing a matrix Code snippet to copy: mat = [[8, 9, 10], [11, 12, 13
Python tricks and tips Section 3: Matrix Lesson 11: Transposing a matrix Code snippet to copy: mat = [[8, 9, 10], [11, 12, 13]] new_mat=zip(*mat) for row in new_mat: print(row)

Hi folks, For all you who have been here for a long time, you probably noticed that after certain period of inactivity, this channel started posting content again. First owner of this channel (a friend of mine, admin of AI India) didn't have enough time to take care of it so he transferred ownership to me. I am 27 year old software engineer, living in Europe, owner and founder of @bigdataspecialist channel (and many more, i will add them in comment if somebody is interested into checking them). I started posting interactive content, with one of my employees helping me with it since i don't have too much free time. I really hope you like it 😉 I would like to inform you that we are having giveaway tomorrow in my main channel (@bigdataspecialist). We are buying you paid course of your choice. Check last post in that channel for more info. That's it, I really hope you like new content, feel free to reach me if you need anything and also write any suggestions what would you like to see in this or other channel of mine in comments. Thank you all and have a nice day.

Python Frameworks and Libraries
Python Frameworks and Libraries

Is Python code compiled or interpreted?
Anonymous voting

Python tricks and tips Section 2: Strings Lesson 10: Checking if two words are anagrams Code snippet to copy: from collection
Python tricks and tips Section 2: Strings Lesson 10: Checking if two words are anagrams Code snippet to copy: from collections import Counter def is_anagram(str1, str2): return Counter(str1) == Counter(str2) print(is_anagram(‘taste’, ‘state)) print(is_anagram(‘beach’, ‘peach’))

Python tricks and tips Section 2: Strings Lesson 9: Creating a single string Code snippet to copy: a = [“I”, “am”, “not”, “av
Python tricks and tips Section 2: Strings Lesson 9: Creating a single string Code snippet to copy: a = [“I”, “am”, “not”, “available”] print(“ “.join(a))

Introduction to Python Programming Course Notes 📄 164 pages 🔗 Book link #Python ➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @python_bds for more

Python tricks and tips Section 2: Strings Lesson 6: Reversing the string Code snippet to copy: a=”python” print(“Reverse is”,
Python tricks and tips Section 2: Strings Lesson 6: Reversing the string Code snippet to copy: a=”python” print(“Reverse is”, a[::-1])

Python tricks and tips Section 2: Strings Lesson 8: Printing out multiple values of strings Code snippet to copy: print(“on”*
Python tricks and tips Section 2: Strings Lesson 8: Printing out multiple values of strings Code snippet to copy: print(“on”*3+’ ‘+”off”*2)

Which python versions do you regularly use?
Which python versions do you regularly use?

Is Python case sensitive when dealing with identifiers?
Anonymous voting

Python tricks and tips Section 2: Strings Lesson 7: Splitting the string Code snippet to copy: a="Python is the language of t
Python tricks and tips Section 2: Strings Lesson 7: Splitting the string Code snippet to copy: a="Python is the language of the future" b=a.split() print(b)

Pandas Cheat Sheet
Pandas Cheat Sheet

Python tricks and tips Section 1: Lists Lesson 5: Analyzing the most frequent on the list Code snippet to copy: a = [1, 2, 3,
Python tricks and tips Section 1: Lists Lesson 5: Analyzing the most frequent on the list Code snippet to copy: a = [1, 2, 3, 4, 2, 2, 3, 1, 4, 4, 4] print(max(set(a), key = a.count))

The most popular programming languages
The most popular programming languages

Python Learning - Статистика и аналитика Telegram-канала @python_bds