All Easy Articles
Given a string str which represents a username, the task is to validate this username with the help of Regular Expressions. A username is considered… Read More
So Basically we received a mail regarding comviva drive from the campus group, where we where guided to a Survey Monkey survey. After filling the… Read More
Strings are the arrays of bytes representing Unicode characters. However, Python does not support the character data type. A character is a string of length… Read More
Tkinter Label is a widget that is used to implement display boxes where you can place text or images. The text displayed by this widget… Read More
The main window in PyQt5 is like graph it has x-axis and y-axis, all the widgets are positioned according to their x, y co-ordinates. When… Read More
The first step in creating desktop applications with PyQt is getting a window to show up on your desktop, in this article, we will see… Read More
Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, tkinter is the most commonly used method. It is… Read More
In Python, class is a prototype for objects which is a user-defined type. It specifies and defines objects of the same type, a class includes… Read More
A decorator feature in Python wraps in a function, appends several functionalities to existing code and then returns it. Methods and functions are known to… Read More
If-else conditional statement is used in Python when a situation leads to two conditions and one of them should hold true. Syntax: if (condition): code1… Read More
In GUI applications there is need of displaying information this done using labels in PyQt5, but sometimes there is also a need of changing the… Read More
When we design the GUI (Graphical User Interface) application using PyQt5, there exist the window. A window is a (usually) rectangular portion of the display… Read More
Every front-end developer and web developer knows how frustrating and painful it is to write the same code at multiple places. If they need to… Read More
RSA algorithm is an asymmetric cryptography algorithm. Asymmetric actually means that it works on two different keys i.e. Public Key and Private Key. As the… Read More
Consider a TCP connection between a client and a server with the following specifications; the round trip time is 6 ms, the size of the… Read More
Consider a relational table R that is in 3NF, but not in BCNF. Which one of the following statements is TRUE ? (A) R has… Read More
Bias: Biases are the underlying assumptions that are made by data to simplify the target function. Bias does help us generalize the data better and… Read More
With the help of zlib.crc32() method, we can compute the checksum for crc32 (Cyclic Redundancy Check) to a particular data. It will give 32-bit integer… Read More
Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method. Python… Read More
numpy.ndarray.itemsize() function return the length of one array element in bytes. Syntax : numpy.ndarray.itemsize(arr) Parameters : arr : [array_like] Input array. Return : [int] The… Read More