Posts by Priya Bhowmick
Author Biographical Info: Not available
When we work with Selenium Webdriver multiple browsers with multiple tabs open up. In order to close these tabs, we have two different web driver commands, close() and quit(). We w.... Read More
Today we will discuss function annotations in Python. Function annotation links arbitrary metadata to the function arguments and its return value. PEP3107 has introduced the syntax.... Read More
Today we will discuss how can we pad a string with leading zeroes. Padding a string means adding some zeroes or any other character to the string to increase the length of the stri.... Read More
Today we will discuss the sleep() function present in Python. Sleep() function in Python is used to bring a delay in the execution of a program for a required time. The sleep funct.... Read More
An attribute in Python consists of the data variables and methods that are used to store the data and the functionalities respectively in an object. An attribute error occurs when .... Read More
Today in this tutorial we will focus to check if an object has an attribute or not in Python. We all know that Python is an object-oriented programming language and it consists of .... Read More