
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

460 Views
In this article, we will learn about the enumerate() function and what are the uses of the "enumerate()" function in Python. What is enumerate() function? Python's enumerate() function accepts a data collection as a parameter and returns an enumerate object. The enumerate object is returned in key-value pair format. The key is the corresponding index of each item, and the value is the items. Syntax enumerate(iterable, start) Parameters iterable − the data collection that is passed in so that it can be returned as enumerate object is called iterable start − as the name suggests, the starting index ... Read More

245 Views
In this article, we will learn some projects that we can work on while learning Python. The finest skill you can master right now is unquestionably Python. Python is a flexible language with many potential uses. Python is a programming language that may be used for data research, machine learning, automation, and web development. Python may be used to work as a freelancer or for major software firms like Google. Very few languages offer both of these possibilities. The best way to learn is to create projects and practice solving issues, thus in this article, we've prepared a list of ... Read More

573 Views
In this article, we will learn different types of methods to write JSON in python. Conversion Rules When converting a Python object to JSON data, the dump() method follows the conversion rules listed below − Python JSON dict object list, tuple array str string int, float number True true False false None null Writing Dictionary into a JSON File The function of json.dump() is to arrange a Python object into a JSON formatted stream into the specified file. Syntax dump(obj, fp, *, ... Read More

888 Views
In this article, we will learn how to create a user interface using python. What is GUI? The term "Graphical User Interface" (or "GUI") refers to a set of visual elements that may be interacted with in computer software to display informational and interactive items. In response to human input, objects may change appearance characteristics like as color, size, and visibility. Graphical components like icons, cursors, and buttons can be enhanced with audio or visual effects like transparency to create a graphical user interface (GUI). If you want more people to use your platform, you need to make sure it ... Read More

338 Views
This article will teach us how to create some fascinating things in Python to make our work more interesting. Trading Bot While the economy, stock market, and cryptocurrencies are all suffering, many people are still profiting. Even though you shouldn't put all your money into a trading bot unless you know what you're doing, it's an interesting project to work on and learn from. AI Sports Betting Software Although the goal is to predict an outcome of events (much like the trading bot), the approach you choose to solve this challenge may be very different. As opposed to a trading ... Read More

2K+ Views
In this tutorial, we will learn how to check whether the number is positive or negative. This tutorial includes two ways to achieve this by using the built-in function Signbit() present in the math library. Another way is to use the relation operators using which we can compare a number with zero and predict whether the number is positive or not. Method 1: Using Signbit() function In this example, we are going to use the built-in function Signbit() present in the math library to check whether the number is positive or negative. Syntax Signbit() is a function in math library ... Read More

844 Views
This tutorial will teach us how to create a function with arguments and a return value. This tutorial involves a gist about the function, and syntax for the function with an argument and a return type in Golang, then last we will see two different examples of a function with arguments and with a return type. In one example we will return the sum of two numbers and in the other one, we will return the area of the circle. Functions in the Programming language. Let us first see what function is. The function is a subset of a program ... Read More

357 Views
This tutorial will teach us how to create a function with arguments but without a return value. This tutorial involves a gist about the function, and syntax for the function with argument and without return type in Golang, then last we will see two different examples of a function with arguments but without a return type. In the first example, we are going to print the argument passed in the function with the respective statement. In the other example, we are going to add the numbers passed as arguments and print the sum in the same function. Function with argument ... Read More

2K+ Views
This tutorial will teach us how to create a function without arguments and with a return value. This tutorial involves a gist about the function, and syntax for the function without an argument and with a return type in Golang, then last we will see two different examples of a function without arguments and with a return type. In both examples, we are going to create two functions which are returning a string whenever called. Function without argument and with a return type. SyntaxNow we will see the syntax and explanation for the function without an argument and with a ... Read More

324 Views
In this tutorial, we are going to see how we can write a simple recursive function Golang with the help of an algorithm and, examples. In the first example, we will print the number from 1 to N in ascending order similarly in the other example we are going to print the number from 1 to N in descending order. In terms of programming, a function is a recursive function if we are calling the function in the same function and have a base condition. Whenever the base condition is satisfied the calling of the function is stopped and we ... Read More