
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

719 Views
In this article, we will see which internet companies use python for their needs. Python Python is a high-level, object-oriented, dynamic, and multipurpose programming language i.e multi-paradigm language. Python's syntax, dynamic typing, and interpreted nature make it an excellent scripting language. It supports a variety of programming paradigms, including object-oriented, functional, and procedural styles. Additionally, because it is an interpreted language, it cannot be converted to computer-readable code before running at runtime. Internet Companies using Python The following are some famous internet companies that use python − Google Facebook Netflix Quora Amazon Instagram Uber Spotify Reddit PayPal NASA Pinterest ... Read More

7K+ Views
In this article, we will see what to learn after learning the basics of python. Beginners who know the basics of Python tend to lean toward the fields of data science and machine learning. Data science is a different topic that demands its teaching and study. Python, in terms of web scraping, is a handy tool. Web scraping is one of its underutilized applications. Python experts can extract large amounts of data from websites. Despite being labeled as a beginner's language, the Python basics lesson aids professional developers and coders working on a variety of scientific applications. Artificial Intelligence Artificial ... Read More

2K+ Views
In this article, we will learn the lambda function in Python and why we need it and see some practical examples of the lambda function. What is the lambda function in Python? Lambda Function, often known as an 'Anonymous Function, ' is the same as a normal Python function except that it can be defined without a name. The def keyword is used to define normal functions, while the lambda keyword is used to define anonymous functions. They are, however, limited to a single line of expression. They, like regular functions, can accept several parameters. Syntax lambda arguments: expression ... Read More

4K+ Views
In this article, we will learn the difference between Core Python and Django Python What is Python? Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built-in data structures, together with dynamic binding and dynamic typing, make it particularly appealing to use as a scripting or glue language to connect existing components. Python is popular among programmers due to its relative simplicity, support for many packages and modules, and the fact that its interpreter and standard libraries are free. These benefits, as well as many more, motivate programmers to learn Python. What is Django? Django is ... Read More

394 Views
In this article, we will learn some good Python projects for an intermediate programmer. These projects are neither too difficult nor too simple. There will be some challenges while developing these projects, and you will have a great time solving them. We classified the projects into three groups − Web Applications − Generally, developers are in charge of both the front-end and back-end components of the application. As a Python developer, your primary attention would be on the back end, where all business logic is implemented. ... Read More

6K+ Views
In this article, we will see if Is Python good for developing games? If yes, what are the primary reasons for it, and if no, what are the reasons? Python as a game development language has become popular in the entertainment industry. It's not just because Python is popular in other domains of technology or because it's free and open source (though those are both great reasons). Python is utilized in game development because it is a robust and versatile programming language. It automates many of the most typical activities related to game creation, and there are numerous resources to ... Read More

402 Views
In this article, we will learn the tips to get a job as a Python developer. You can become a Python Developer in various ways because no specific background or experience is required. But it all starts with a specialized set of skills, specifically mastery of the Python programming language. Many developers believe that the Python programming language offers many advantages over other programming languages. Python Developer A Python Developer is a member of a software team who is skilled in the creation, design, and delivery of Python-based computer applications and other systems. In Python-based development projects, a python developer ... Read More

563 Views
This tutorial discusses writing a program to check whether the input number is a Palindrome number in the Haskell programming language. A number can be called as a palindrome when it results in the same number when the digits are reversed. For Example, the number 12321 is a palindrome, because after reversing the digits it results in the same number. In this tutorial we see, Program to check whether the input number is a palindrome using the string reverse function. Program to check whether the input number is a palindrome using the recursive function. Method 1: Checking Palindrome ... Read More

2K+ Views
This tutorial will discuss writing a program to print Hello World! in Haskell Programming Language. The Computations in Haskell are done using mathematical functions. In this tutorial, We will discuss different ways to print Hello World! in Haskell. Program to print Hello World! Using the “print” function. Program to print Hello World! Using the “putStr” function. Program to print Hello World! Using the “putStrLn” function. Example Program to print Hello World! Using the “print” function main :: IO() main = do -- printing using the function print print ("Hello World!") Output Hello World! ... Read More

1K+ Views
This tutorial discusses writing a program to check whether the input string is a palindrome in the Haskell programming language. A string is said to be a palindrome when it results in an exact string after reversing it. For example, the string “level” is a palindrome because it results in an exact string even after reversing it. In this tutorial we see, Program to check whether the string is a palindrome using a built-in function reverse. Program to check whether the string is a palindrome using a recursive function. Method 1: Checking The String Is A Palindrome Using ... Read More