Jaisshree has Published 121 Articles

Difference between str.capitalize() vs str.title()

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:30:27

185 Views

In Python, String is a sequence of characters surrounded by either double quotes(" ") or single quotes (' '). Strings are used to represent text data in Python and it can contain letters, numbers, and symbols. String data type is immutable in Python, that is once a ... Read More

Difference between Spark Dataframe and Pandas Dataframe

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:24:20

568 Views

Spark DataFrame Spark DataFrame is a distributed data collection established into named columns. it's a key statistics structure in Apache Spark, a quick and distributed computing device optimised for huge data processing. In a distributed computing context, Spark DataFrames provide a better-stage API for operating with established and semi-structured information. ... Read More

Difference between Shallow and Deep Copy of a Class

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:20:39

403 Views

A class is a blueprint or template that defines objects' attributes (data) and behaviours (methods). It's by far a fundamental concept of object-orientated programming (OOP) that allows you to create items based totally on the class definition. Shallow copy Shallow copy creates a new object that stores the ... Read More

Difference between reshape() and resize() method in Numpy

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:15:41

315 Views

The size of the NumPy arrays can be changed with the help of two functions in python namely reshape and resize. There's only one thing that differentiates them, the original array remains unchanged while using resize() while reshape() returns only the changed array and the original array remains intact. ... Read More

Difference Between Queue and Collestions in Python

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:08:34

111 Views

A queue is a data structure which follows a FIFO (First In First Out) delivery method that is, the order of a set of messages is strictly preserved. It processes all messages exactly once, hence, there's no duplication of messages. The advantage of a FIFO system over a standard ... Read More

How to Fetch Data from JSON file and Display it in an HTML Table using jQuery?

Jaisshree

Jaisshree

Updated on 10-Aug-2023 11:42:34

2K+ Views

JSON (JavaScript Object Notation) has become popular and offers a lightweight and clean−to−read layout for replacing information between a server and a web application. With the assistance of jQuery, an effective JavaScript library, you could easily fetch statistics from a JSON document and display it on an HTML desk. To ... Read More

How to Expand button with Animation on Hover using Vue.js ?

Jaisshree

Jaisshree

Updated on 10-Aug-2023 11:40:54

328 Views

Animated websites give users an enjoyable experience. An animated element, such as a link or button, may change colour, expand or shrink, rotate, or any combination of those actions when a website visitor hovers over it. This serves as visual confirmation that their interactions are effective in addition to being ... Read More

How to Expand Accordion from URL in Bootstrap?

Jaisshree

Jaisshree

Updated on 10-Aug-2023 11:38:49

627 Views

Bootstrap is a popular open−source framework for building responsive and mobile−first websites. By offering a selection of pre−made design elements and layout components, this framework makes it simple for developers to produce standardised and expert−looking web pages. Forms, buttons, navigation, and typography are a few of these. To achieve ... Read More

How to Escape Everything in a Block in HTML?

Jaisshree

Jaisshree

Updated on 10-Aug-2023 11:35:59

3K+ Views

The process of creating web pages involves incorporating various special characters into HTML structures that have distinctive meanings. Nevertheless, some instances require designers to display symbols with speciality without browsers interpreting them as such; this is where escape characters come in handy. By using these codes correctly in an HTML ... Read More

How to Ensure the Readability of HTML?

Jaisshree

Jaisshree

Updated on 10-Aug-2023 11:33:57

127 Views

HTML is a fundamental language utilized in web development for creating web pages. The readability of HTML is of great importance, not only for developers but also for users who aim to navigate and understand a web page easily. Proper Indentation How code is structured and presented is known as ... Read More

Previous 1 ... 4 5 6 7 8 ... 13 Next
Advertisements