
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 26504 Articles for Server Side Programming

361 Views
Introduction In the current world, handling data is the most challenging task for organizations with a high volume of data and with the development of data science and machine learning it has become easier to access. And the Python language plays a vital role in dealing with this data, as the data present can be relevant or irrelevant to each other. When they have some relevancy, it can be stored combinable with the other data or simply the aggregating of the data. In this, it combines the elements with similar characteristics and attributes they belong to. To do this process, ... Read More

2K+ Views
A List is a type of data structure in Python language that can store elements of different data types within these “[]” brackets. The order in which data can be sorted will be either ascending or descending. In a list when the preceding element is greater than the next element then it follows descending order and on the other hand, when the preceding element is less than the next element then it follows ascending order. Utilizing three distinct approaches, the ways are given verifying for descending Sorted list in python. Approaches Approach 1 − Using iteration method Approach 2 ... Read More

620 Views
Introduction In this article, the user will focus on how to Append K characters N times in python. In the Python Language, append() function is used to add a character to the existing list, but to add K characters in N number of times different approach is utilized. The first approach utilize the join() method, the second approach utilize the textwrap() method and the last approach utilize the reduce() method to add the character to the existing string. Append K characters N times The methods to do this can be varying and some may be simple loop iteration on the ... Read More

765 Views
Introduction In Python, a tuple is one of the types of data structures. The tuples are composed of items or elements and look more like lists. It has elements which cannot be changed after declaration. To return all the possible combinations of the tuple primarily the itertool library is used. The iteration or repetition process through the tuples is done using the iterator object containing various items. For the purpose of returning all possible combinations in a tuple, we can use many functions like combination(), chain(), product() and concatenation method. All Possible N combination tuples Tuple is a data structure ... Read More

459 Views
Introduction Python has got a remarkable place in the field of handling data with the technologies like data science and machine learning. In the 21st century handling data is the most challenging task for organizations with a high volume of data and with the development of data science and machine learning it has become easier to access. In the Python language, Unicode is used and is represented as UTF (Universal Coded Character Set plus Transfer Format)-8. To encode the characters, there are two main possibilities of characters one is an ASCII character and the other is a non-ASCII ... Read More

542 Views
Introduction Python Language comes under the OOPS concept and it runs the code immediately without checking for errors. This language was discovered by Guido Rossum in 1989 and was globally launched in the year 1991. Python is a versatile and high-level language that can be understood easily by the user. In the current world, handling data is the most challenging task for organizations with a high volume of data and with the development of data science and machine learning it has become easier to access. Bitwise OR among list elements The Operator used for representing the bitwise operator is “|”. ... Read More

266 Views
The words are composed of vowels and consonants that form the strings. Using the Python language, the vowels and consonants can be varied inside the string. The methods to do this can be varying and some may be simple loop iteration on the other side it can be some of the functions and methods. In this article, the user will learn how to alternate vowels and consonants in Python Strings. Three approaches are depicted in this article. Multiple inbuilt functions are available in the python language to resolve the complex problem. Let’s take a deep dive into this article. ApproachApproach ... Read More

353 Views
Introduction Python Language comes under the OOPS concept and it runs the code immediately without checking for errors. Apart from the other languages it has got its unique place because of its advantages like it’s easy to code with simple syntax and statements. Strings are composed of characters and character addition is one of the string manipulation techniques used to alter the characters in the strings. Then append those altered characters together to form a new string. Alternate Character Addition Approach Approach 1 − Using the recursive function. Approach 2 − Using for loop. Approach 3 − ... Read More

1K+ Views
In this article, the user will learn how to convert a Python string to alternate cases. The strings are comprised of characters and it is indicated either within single quotes or double quotes. The string can be converted into alternate cases using the Python language. In the given string, the strings can be converted from uppercase to lowercase or vice versa. The three approaches are demonstrated in this article. The first approach describe the concept of for loop, the second approach uses the join() method and the three approach uses the regular expression to convert a Python string to Alternate ... Read More

983 Views
Introduction A List is a type of data structure in Python language that can store elements of different data types within these “[]” brackets. The given data are listed according to the data type like integer and string. There are three primary functions involved namely filtering, sorting, and grouping. To sort lists based on certain conditions such as alphabetical order or ascending or descending numerical value we can use sorted() which takes two parameters the object to be sorted and the key parameter for the sorting technique. Categorizing input data in Python lists The empty list can also be initialized ... Read More