Python

Python unittest - unit test example — step-by-step Python tutorial on Progressive Robot

Python unittest – unit test example

URL: https://www.progressiverobot.com/python-unittest-unit-test-example/ Today we will learn about python unittest and look through python unit test example programs. In previous tutorial we learned about [python zip function](/community/tutorials/python-zip-function). Python unittest Python unittest module is used to test a unit of source code. Suppose, you need to test your project. You know what kind of data the function […]

Read more
How To Deploy a Django App on App Platform — step-by-step Python tutorial on Progressive Robot

How To Deploy a Django App on App Platform

Django is a powerful web framework that allows you to deploy your Python applications or websites. Django includes many features such as authentication, a custom database ORM, and an extensible plugin architecture. Django simplifies the complexities of web development, allowing you to focus on writing code.

Read more
Build a Web App With Django — step-by-step Python tutorial on Progressive Robot

Build a Web App With Django

Let’s explore Django — a powerful Python Web framework that enables rapid development, robust database management, and many built in tools that make building your app easier.

Read more
Python String contains — step-by-step Python tutorial on Progressive Robot

Python String contains

Learn how to check if one Python string contains another using the __contains__() method. This case-sensitive instance method returns True or False based on whether the specified substring is present. Explore simple examples and user-input scenarios to understand its application. Enhance your Python string-handling skills with practical demonstrations and clear explanations.

Read more
Введение в работу с библиотекой Requests в Python — step-by-step Python tutorial on Progressive Robot

Введение в работу с библиотекой Requests в Python

Многие веб-приложения используют API для подключения к различным сторонним сервисам. Используя API, вы можете получать доступ к таким данным как информация о погоде, результаты спортивных состязаний, рейтинги фильмов, твиты, результаты поиска в поисковых системах и изображения….

Read more
CHAT