Python

Python help() function — step-by-step Python tutorial on Progressive Robot

Python help() function

URL: https://www.progressiverobot.com/python-help-function/ Python help() function is used to get the documentation of specified module, class, function, variables etc. This method is generally used with python interpreter console to get details about python objects. Python help() function Python help() function syntax is: help([object]) If no argument is given, the interactive help system starts on the interpreter […]

Read more
Python not equal operator — step-by-step Python tutorial on Progressive Robot

Python not equal operator

URL: https://www.progressiverobot.com/python-not-equal-operator/ Python not equal operator returns True if two variables are of same type and have different values, if the values are same then it returns False. Python is dynamic and strongly typed language, so if the two variables have the same values but they are of different type, then not equal operator will […]

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

Python String Module

URL: https://www.progressiverobot.com/python-string-module/ Python String module contains some constants, utility function, and classes for string manipulation. Python String Module It's a built-in module and we have to import it before using any of its constants and classes. String Module Constants Let's look at the constants defined in the string module. import string # string module constants […]

Read more
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 scrape Amazon Product Information using Beautiful Soup — step-by-step Python tutorial on Progressive Robot

How to scrape Amazon Product Information using Beautiful Soup

URL: https://www.progressiverobot.com/scrape-amazon-product-information-beautiful-soup/ Web Scraping is the programming-based technique for extracting relevant information from websites and storing it in the local system for further use. In modern times, web scraping has a lot of applications in the fields of Data Science and Marketing. Web scrapers across the world gather tons of information for either personal or […]

Read more
CHAT