Python

How To Scrape Web Pages and Post Content to Twitter with Python 3 — step-by-step Python tutorial on Progressive Robot

How To Scrape Web Pages and Post Content to Twitter with Python 3

Twitter bots are a powerful way for managing your social media as well as for extracting information from the microblogging network. In this tutorial, you’ll build a Twitter bot using this Twitter API library for Python. You’ll program your bot to alternately tweet content from these two websites and at set time intervals.

Read more
Настройка Jupyter Notebook с помощью Python 3 в Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Настройка Jupyter Notebook с помощью Python 3 в Ubuntu 18.04

Веб-приложение с открытым исходным кодом, Jupyter Notebook, позволяет создавать и обмениваться интерактивными кодом, визуализациями и многим другим. Этот инструмент можно использовать с несколькими языками программирования, включая Python, Julia, R, Haskell…

Read more
Python decimal - division, round, precision — step-by-step Python tutorial on Progressive Robot

Python decimal – division, round, precision

URL: https://www.progressiverobot.com/python-decimal-division-round-precision/ Python decimal module helps us in division with proper precision and rounding of [numbers](/community/tutorials/python-numbers). Python decimal module !python decimal, python division, python rounding In this lesson on decimal module in Python, we will see how we can manage decimal numbers in our programs for precision and formatting and making calculations as well. The […]

Read more
Pandas Drop Duplicate Rows - drop_duplicates() function — step-by-step Python tutorial on Progressive Robot

Pandas Drop Duplicate Rows – drop_duplicates() function

URL: https://www.progressiverobot.com/pandas-drop-duplicate-rows-drop-duplicates-function/ Pandas drop_duplicates() Function Syntax Pandas drop_duplicates() function removes duplicate rows from the DataFrame. Its syntax is: drop_duplicates(self, subset=None, keep="first", inplace=False) subset: column label or sequence of labels to consider for identifying duplicate rows. By default, all the columns are used to find the duplicate rows. keep: allowed values are {'first', 'last', False}, default […]

Read more
Как «обмануть» нейронную сеть в Python 3 — step-by-step AI And Machine Learning tutorial on Progressive Robot

Как «обмануть» нейронную сеть в Python 3

Автор выбрал Dev Color​​​ для получения пожертвования в рамках программы Write for DOnations. Можно ли обмануть нейронную сеть для классификации животных? Попытка обмануть классификатор животных может не иметь…

Read more
CHAT