Atharva Shah has Published 81 Articles

Hashing Passwords in Python with BCrypt

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:42:33

7K+ Views

Password hashing is a technique used to store passwords securely. It involves converting plain text passwords into a hashed format that cannot be easily reversed or decrypted. By hashing passwords, even if a hacker gains access to the password database, they will not be able to decipher the passwords. ... Read More

Formatting containers using format() in Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:41:33

177 Views

When using Python, container style can be a useful means of enhancing the readability and maintainability of code. You can style lists, tuples, dictionaries, sets, and even classes quickly and simply using this method. You can adjust how your data is presented by aligning columns, adding padding, and setting accuracy ... Read More

Emulating Numeric Types in Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:39:18

360 Views

Python includes built-in mathematical data structures like complex numbers, floating-point numbers, and integers. But occasionally we might want to develop our own custom-behaved number classes. Here, the idea of imitating number classes is put into use. We can create objects that can be used in the same way as native ... Read More

Element wise concatenation of two NumPy arrays of string

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:36:48

262 Views

Python's element-wise union of two NumPy string arrays is a potent method with a wide range of uses. This blog article will go over NumPy's setup and implementation procedures, the syntax for joining two NumPy string arrays together element-wise in Python, and the underlying method. Element-wise concatenation, for instance, is ... Read More

Difference Between Set vs List vs Tuple

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:31:35

1K+ Views

The utilization of data structures in Python presents a perplexing and convoluted method of depicting numbers, strings, and other Python objects in a collection of values. Python's built-in data structures, such as lists, tuples, and sets, are captivating and exhibit distinctive traits that differentiate them from one another. These data ... Read More

Difference Between Method Overloading and Method Overriding in Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:28:17

7K+ Views

Methods are important when it comes to Python's object-oriented programming (OOP). They are crucial for isolating functionality within a class and giving things the ability to carry out particular functions. However, two OOP concepts—method overloading and method overriding—can occasionally cause misunderstanding. The distinctions between these two ideas and their applications ... Read More

Handling Categorical Data in Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:20:49

821 Views

Data that only includes a few values is referred to as categorical data, often known as categories or levels and it is described in two ways - nominal or ordinal. Data that lacks any intrinsic order, such as colors, genders, or animal species, is represented as nominal categorical data while ... Read More

Fun Fact Generator Web App in Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:15:58

446 Views

Flask offers a number of features, such as database access, processing of user input, and dynamic data delivery. An effective and user-friendly online application may be made using HTML and simple Python coding. Python gives us the ability to work with data and provide consumers tailored experiences, while Flask makes ... Read More

fromtimestamp() Function Of Datetime.date Class in Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:10:08

3K+ Views

The fromtimestamp() function of the Python datetime.date class is useful for converting a timestamp into a date object. A timestamp essentially denotes the duration since the epoch (which took place on January 1, 1970, 00:00:00 UTC). To help you understand the fromtimestamp() function's practical uses, we'll go over the syntax ... Read More

Forward driver method – Selenium Python

Atharva Shah

Atharva Shah

Updated on 18-Apr-2023 12:07:17

509 Views

This technique is used to navigate forward in a web browser's history and allows Selenium to move forward in the browser's history page executing any new navigation commands. This Forward Driver Method in Selenium Python can improve the efficiency and accuracy of your automated testing scripts. which allows you ... Read More

Advertisements