IamPython
290 subscribers
148 photos
13 videos
8 files
195 links
This is Python based telegram group for web developers, Artificial intelligence, webscraping, Datascience, Data analysis, Ethical Hacking and more. You will learn lot insights and useful information
Download Telegram
Did you know?💡

The antigravity module originated in Google App Engine! Compared to the🐍Python 3's version it has a fly🦸‍♀️function that can even render the text of the comic in HTML.
The most popular Big Data tools are

Apache Spark,
Apache Kafka, and
Apache Hadoop/MapReduce, followed by Dask and Apache Hive.


We can also use these tools by python with different modules.
Here is the list of commonly used machine learning algorithms.
These algorithms can be applied to almost any data problem:

Linear Regression
Logistic Regression
Decision Tree
SVM
Naive Bayes
KNN
K-Means
Random Forest
Dimensionality Reduction Algorithms
Gradient Boosting algorithms
GBM
XGBoost
LightGBM
CatBoost
The overall market size for chatbots worldwide would be over $1.3B USD by 2024
Popular python based DeepLearning and Machine learning frameworks. https://iampython.com/resource-detail/top-python-deep-learning-frameworks-you-must-know/
Python Official Online events in Asia. Try to join If you are interested
The magic of programming!! Hello world in different programming languages!!
we should pronounce correctly.
Topic: DevSprint 12 - Webscraping Using Python
Time: Aug 21, 2020 09:30 PM Mumbai, Kolkata, New Delhi

Join Zoom Meeting
https://us02web.zoom.us/j/83045800485

Meeting ID: 830 4580 0485
In 10 mins
Please join if you are interested
Python Facts
——————

>>> two_wrongs = [False, False]
>>> bool(two_wrongs)
True

>>> bool(False + False)
False

The list is not empty
>>> bool([])
False
>>> bool([False, False])
True

Any non-empty object is considered True. Even if it's contains False booleans internally

>>> False + False == False
True

>>> bool("Nothing surprises me anymore")
True



Even one
>>> bool([False])
True


🚨 Little cautious when you are using Boolean in python!!!
Python tip

To update a list in-place, use a slice-assignment

t = s
......
s[:] = [f(x) for x in s if c(x)]

Now, both "s" and "t" reflect the new data.
"JavaScript is going to die soon, React is the last UI library you will learn, TypeScript is a bottle-neck, WASM is the way forward"

Companies in the real world: "We are looking for a jQuery developer, ES6 knowledge is beneficial".


Big war is going in Websdeveoper’s community !!

People have different opinions. Whatever UI/UX plays important role in every technology (Python / Java / .NET / Ruby / PHP)
Here are several ways to interactively display intermediate results during a calculation.

# Two liner
>>> q = 3.5 * 1.5
>>> q
5.25

# Second expression
>>> q = 3.5 * 1.5; q
5.25

# Walrus
>>> (q := 3.5 * 1.5)
5.25

# Invisible
>>> q = 3.5 * 1.5