Python Resources - Basic Python, ML, DataScience, BigData
2.46K subscribers
14 photos
3 files
243 links
You can find all kinds of resources related to Python, ML, DataScience and BigData.
Resources — »»» @python_resources_iGnani
Projects — »»» @python_projects_repository
Questions— »»» @python_interview_questions
Forum — »»» @python_programmers_club
Download Telegram
Python Crash Course - Cheat Sheets

* Beginner’s Python Cheat Sheet - Provides an overview of the basics of Python including variables, lists, dictionaries, functions, classes, and more.

* Beginner’s Python Cheat Sheet - Lists - Focuses on lists: how to build and modify a list, access elements from a list, and loop through the values in a list. Also covers numerical lists, list comprehensions, tuples, and more.

* Beginner’s Python Cheat Sheet - Dictionaries - Focuses on dictionaries: how to build and modify a dictionary, access the information in a dictionary, and loop through dictionaries in a variety of ways. Includes sections on nesting lists and dictionaries, using an OrderedDict and more.

* Beginner’s Python Cheat Sheet - If Statements and While Loops - Focuses on if statements and while loops: how to write conditional tests with strings and numerical data, how to write simple and complex if statements, and how to accept user input. Also covers a variety of approaches to using while loops.

* Beginner’s Python Cheat Sheet - Functions - Focuses on functions: how to define a function and how to pass information to a function. Covers positional and keyword arguments, return values, passing lists, using modules, and more.

* Beginner’s Python Cheat Sheet - Classes - Focuses on classes: how to define and use a class. Covers attributes and methods, inheritance and importing, and more.

* Beginner’s Python Cheat Sheet - Files and Exceptions - Focuses on working with files, and using exceptions to handle errors that might arise as your programs run. Covers reading and writing to files, try-except-else blocks, and storing data using the json module.

* Beginner’s Python Cheat Sheet - Testing Your Code - Focuses on unit tests and test cases. How to test a function, and how to test a class.

* Beginner’s Python Cheat Sheet - Pygame - Focuses on creating games with Pygame. Creating a game window, rect objects, images, responding to keyboard and mouse input, groups, detecting collisions between game elements, and rendering text.

* Beginner’s Python Cheat Sheet - matplotlib - Focuses on creating visualizations with matplotlib. Making line graphs and scatter plots, customizing plots, making multiple plots, and working with time-based data.

* Beginner’s Python Cheat Sheet - Pygal - Focuses on creating visualizations with Pygal. Making line graphs, scatter plots, and bar graphs, styling plots, making multiple plots, and working with global datasets.

* Beginner’s Python Cheat Sheet - Django - Focuses on creating web apps with Django. Installing Django and starting a project, working with models, building a home page, using templates, using data, and making user accounts.
1
A lot of people are confused or have a big question on what to do after learning the basics of Python.

Or on what can we do using Python. This article provides a simple answer to these questions, thought it would be useful.

https://realpython.com/what-can-i-do-with-python/
*

007 - Input and Output - Learn Python : Full Course For Beginner
Will be starting at 5 PM today, and Q&A session follows it.
Will provide the link to Q&A session after completing the video.

This video is all about Input and Output in Python. It covers both input() and print() functions in detail like its never covered before in other videos.
Forwarded from Python Questions via @like
Welcome to Python Questions!

This channel caters to beginners, experienced python developers and those who just want to try somthing new.

It will contain simple objective questions to complex problems to solve using Python programming language.
It will also contain common interview questions.
Regular expressions, Algorithms, Quiz will also be posted.

For bigger problems, we will be posting the solutions on our github repository: https://github.com/ignani/LearnPython
Forwarded from Python Questions
What is the output of this statement?

16//3+16//-3
Anonymous Poll
9%
1
42%
0
19%
-1
5%
True
25%
Error - Invalid Statement
Forwarded from Python Questions
y, z = 10, 15; b = c = 0
b = y - y + z; y -= (y + z)
What is the value of b & y respectively? Please Explain?
Anonymous Poll
20%
15 15
41%
15 -15
10%
-15 15
7%
-15 -15
22%
Error
Forwarded from Python Questions
*

https://t.me/python_interview_questions/12


#answer to the question 👆is ————-»»» Dict

To clarify, both Set and Dict perform search quite fast due to both Set & Dict being implemented using hashtables.
However, Dict performs marginally better compared to Set, but when compared to List or tuple, the difference is huge.
Forwarded from Python Questions
print("""A
B
C """=="A\nB\nC\n") #What is the output
Anonymous Poll
26%
True
23%
False
20%
Error
10%
ABC
21%
Invalid Statement
Forwarded from Python Projects
Did You Know - Python Tips

# Very simple string reverse trick in Python
x = 'Python'
print(x[::-1])

» nohtyP

#python #tips #HowTo
Forwarded from Python Projects
Did You Know - Python Tips : 002

# In-Place Swapping Of Two Variables, works with any datatype

x, y = 'hello', 'world'
print(x, y)
x, y = y, x
print(x, y)

#python #tips #HowTo
Forwarded from Python Projects
Did You Know - Python Tips : 003

# Using all the elements in a list, create a single string

mylist = ["Hello!", "Welcome", " to", "iGnani"]
print(" ".join(mylist))

#python #tips #HowTo