1.09K subscribers
87 photos
1 video
37 files
74 links
Get amazing learning resources for all these courses
1. Python
2. Web development
3. Java
4. App development
5. Machine learning
6. Data structures
7. Algorithms
8. Python related projects
9. Automation with PYTHON
10. Artificial intelligence
Download Telegram
Codeforces Group for today's contestπŸ‘‡

@codeforces_cp

@codeforces_cp

@codeforces_cp
Leetcode Group for today's contestπŸ‘‡

@leetcode_cp

@leetcode_cp

@leetcode_cp
Introduction to Python Programming
Course Notes

πŸ“„ 164 pages

πŸ”— Book link

#Python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Python tricks and tips
Section 2: Strings
Lesson 8: Creating a single string

Code snippet to copy:
a = [β€œI”, β€œam”, β€œnot”, β€œavailable”]
print(β€œ β€œ.join(a))


Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
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’))

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Python Frameworks and Libraries

Django is the most popular framework among Python developers. No surprise here, seeing how Web development is so popular among Python users. Interestingly, 43% of respondents are using IPython, which clearly shows it’s being used not only for scientific purposes, but for general software development as well.

A large number of respondents also specified Flask as their framework of choice.

Join @python_programming_resources 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]]
new_mat=zip(*mat)
for row in new_mat:
print(row)

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Python Notes

πŸ“„ 40 pages

πŸ”— Book link

#Python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Python Strings Cheat Sheet

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
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)

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Software Engine Usage

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Get all Off Campus Job alerts, internship updates, interview material regularly here πŸ‘‡

@jobsandinternshipsupdates

@jobsandinternshipsindia
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))

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Get all Off Campus Job alerts, internship updates, interview material regularly here πŸ‘‡

@jobsandinternshipsupdates

@jobsandinternshipsindia
Python_Notes_Basics_of_Python_programmin.pdf
83.8 KB
Python Notes Basics of Python programming

πŸ“„ 29 pages

#Python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
CODECHEF Group for today's contestπŸ‘‡

@codechef_group

@codechef_group

@codechef_group
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)

Jo
in @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
Features of Python

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
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

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘
General python usage

Join @python_programming_resources for more

π—˜π—‘π—π—’π—¬ π—Ÿπ—˜π—”π—₯π—‘π—œπ—‘π—šπŸ‘πŸ‘