Server Side Programming Articles - Page 2561 of 2650

How to create a Python dictionary from an object\'s fields?

Disha Verma
Updated on 20-May-2025 16:12:44

407 Views

In Python, objects are instances of classes containing attributes and methods, while dictionaries are collections of key-value pairs. We can obtain a dictionary from an object's fields - Using __dict__ Using vars() Using __dict__ You can access an object's attributes as a dictionary using its _dict_ attribute. In Python, every object has a _dict_ attribute that stores the object's attributes and their values as a dictionary (key-value pairs). Example In this example, we have defined a class Company with attributes Companyname and Location, and created ... Read More

How to convert Python Dictionary to a list?

Vikram Chiluka
Updated on 23-Aug-2023 13:02:48

108K+ Views

In this article, we will show you how to convert a python dictionary to a list. Below are the methods to accomplish this task: Using list & items() Method Using keys() Method Using values() Method Using List Comprehension Using Zip() Function Using map() Function Using for loop & items() Method Dictionaries are Python's version of an associative array data structure. A dictionary is a collection of key-value pairs. Each key pair is represented by a key pair and its associated value. A dictionary is defined by a list of key-value pairs enclosed in curly braces and ... Read More

How to submit an HTML form using JavaScript?

Abhishek
Updated on 25-Nov-2022 06:57:15

18K+ Views

In this tutorial, we will learn how we can submit an HTML form using JavaScript. To submit an HTML form using JavaScript, we are calling validate() to validate data when the onsubmit event is occurring. We will discuss the direct method of submitting the HTML form as well as the method which checks that none of the fields is empty. Both of these methods are listed below − Using the Form submit() Method Using the manual validations Let us discuss both of these methods in detail in code examples associated to each. Using the Form submit() Method The ... Read More

What are equality operators in C++?

Nishtha Thakur
Updated on 11-Feb-2020 07:46:53

1K+ Views

The equality operators in C++ are is equal to(==) and is not equal to(!=). They do the task as they are named. The binary equality operators compare their operands for strict equality or inequality. The equality operators, equal to (==) and not equal to (!=), have lower precedence than the relational operators, but they behave similarly. The result type for these operators is bool.The equal-to operator (==) returns true (1) if both operands have the same value; otherwise, it returns false (0). The not-equal-to operator (!=) returns true if the operands do not have the same value; otherwise, it returns ... Read More

What are postfix operators in C++?

Akansha Kumari
Updated on 16-Apr-2025 20:32:46

5K+ Views

In C++, operators are special symbols that are designed to perform various Operations on variables and values, like arithmetic, comparison, or logical operations. A Postfix Operator is a type of operator that is used to increment or decrement a value by 1(unless overloaded). It is a unary operator, which works only on a single variable. There are two types of postfix operators in C++: ++ : Post-increment -- : Post-decrement Post Increment Operator (++) The post-increment operator increments the value of a given variable by 1, but only after its ... Read More

What are shift operators in C++?

Akansha Kumari
Updated on 17-Apr-2025 18:47:39

7K+ Views

In C++, bitwise operators are used to perform operations on binary numbers. Since computers store all data in the form of binary (0s and 1s), therefore, every value, like decimal numbers, characters, and booleans, is internally represented in binary. for example: 5 = 00000101 and 3 = 00000011 To learn more about how to convert these decimal values to binary, you can visit this page: Decimal to Binary Conversion. Shift Operators in C++ The shift operator is one of the types of bitwise operators, which are used to move bits of a number left or right. There are two types of ... Read More

What are multiplicative operators in C++?

Jennifer Nicholas
Updated on 11-Feb-2020 07:37:45

325 Views

The multiplicative operators are −Multiplication (*)Division (/)Modulus or “remainder from division” (%)These binary operators have left-to-right associativity. The multiplicative operators take operands of arithmetic sorts. The modulus operator (%) contains a stricter requirement in this its operands should be of integral type.The multiplication operator yields the result of multiplying the first operand by the second.The division operator yields the result of dividing the first operand by the second.The modulus operator yields the remainder given by the subsequent expression, wherever e1 is that the 1st operand and e2 is that the second: e1 – (e1 / e2) * e2, where both ... Read More

What is Bitwise OR in C++?

Akansha Kumari
Updated on 17-Apr-2025 18:46:04

861 Views

Bitwise operators are the operators that are used to perform operations on bits of a binary representation of a number.Bitwise OR (|) Operator OR Operator (|) is one of the types of bitwise operators, which compares each bit of the first operand to the corresponding bit of the second operand and returns 1 if at least one of the bits is 1; else 0 if both bits are 0. You can think of it as similar to addition in decimal, like 0 + 0 = 0, and all other combinations result in 1. But this ... Read More

What is Bitwise AND in C++?

Akansha Kumari
Updated on 21-Apr-2025 12:17:30

733 Views

The Bitwise AND (&) Operator is one of the types of bitwise operators, which perform operations on bits of a binary representation. The Bitwise AND (&) compares each bit of the first operand to the corresponding bit of the second operand and returns 1 if both bits are 1, else returns 0 if either or both bits are 0.You can think of it as similar to multiplication in decimal, like 1 * 1 = 1, and all other combinations result in 0. But ensure that both operands are of integral data types (as it works with binary representations) like int, ... Read More

What is Bitwise XOR in C++?

Akansha Kumari
Updated on 18-Apr-2025 19:39:12

512 Views

The XOR operator(^), also known as "exclusive OR", is one of the types of bitwise operators, which compares each bit of the first operand to the corresponding bit of the second operand and returns 1 if both bits are different, else returns 0 if both are the same. This only works with integral data types like int, char, short, long, and unsigned int, etc, and cannot be directly used with float, double, string, and class/struct objects, etc. Syntax Here is the following syntax of Bitwise XOR. result = operand1 ^ operand2; Where operand1 and operand2 are the integral types (like ... Read More

Advertisements