
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

236 Views
In this article, we will look at some of the things that most people dislike about Python. Using Indentation Instead of Curly Braces Many people complain that Python fully relies on indentation to build code blocks. In Python, as you may know, indentation is not optional. The complaints vary, but they frequently include one or more of the following. It is Difficult to Tell Where a Function Ends That is true when writing large Python functions. However, it would be advantageous if you avoided writing large functions altogether. This is true for any language, not just Python. A function should ... Read More

4K+ Views
In this article, we will learn some good Python automation project ideas. When we talk about "automation, " most people think of big technological developments and employment losses. However, there are far more positive aspects of automation than negative aspects. Automation is a blessing for expert procrastinators and lazy technologists. What is Automation? Automation is the process of programming numerous actions, procedures, and operations that may be executed by machines with minimal human help. By shifting regular activities to the system, automation avoids manual repetition. What should be automated? Automation is a broad field, and you may imagine automating nearly ... Read More

185 Views
In this article, we will learn about some of the Python tips that could make our coders' lives more productive, easier, and happier. Use Try and Except Statements Another lack of utility We see in main conditions is the use of try and except statements, which can be useful in a variety of scenarios. Assume the programmer wanted to continue conducting an execution after a certain condition was met, but they couldn't because an error message was displayed. The program's run-time will be ended once the error message is displayed. We can use a try-and-accept code block to avoid these ... Read More

683 Views
In this article, we will learn why python is not the most suitable for larger projects. Python is preferred as a programming language by millions of developers, making it one of the most popular open-source programming languages with a large developer community. However, some engineers regard Python as a software development anomaly. They consider Python to be primarily a "glue" scripting language, more suited for routine system automation or integrating two applications. That is not correct; Python as a programming language is capable of producing industrial−strength software. Under the hood, Python contains every feature that makes it ideal for a ... Read More

9K+ Views
In this article, we will learn whether Python is case-sensitive or case-insensitive. What is Case Sensitivity? If a programming language differentiates between uppercase and lowercase characters, it is said to be case−sensitive. Have you ever tried mixing uppercase and lowercase letters in your password when login into a website? For example, password instead of tutorialspoint, use TutorialsPOINT. You may have observed that uppercase and lowercase letters are not considered the same, and changing the case stops you from logging in. This is an example of case sensitivity in action. A case-sensitive programming language treats uppercase and lowercase letters differently. As ... Read More

319 Views
In this article, we'll find out if Python or MATLAB is better. Even though Python and Matlab are similar in a lot of ways, Python has a lot of big advantages. Python code is typically more concise and readable than Matlab code. There are various reasons for this, including − In contrast to Matlab, which uses end statements as closures, Python determines the scope of a block based on its indentation (i.e., to signify the end of a block). Because of this, Python programmers are compelled to indent code blocks, which is typically a good practice. And ... Read More

399 Views
In this article, we will learn How should we prepare for a Python interview in order to get a good job. Python has become the world's most popular programming language and is one of the most in− demand languages among companies. It is a high− level interpreted programming language that is frequently used. Its design philosophy prioritizes code readability, and its syntax enables programmers to express concepts in fewer lines of code than in languages like C++ or Java. The language includes elements that allow for understandable programs on both a small and large scale. As a result, if you're ... Read More

2K+ Views
In this article, we'll look at how the Python programming language can help people who are studying electronics engineering. Do you want to know how Python can aid electronics engineers? You've come to the right place; keep reading to learn more. In today's fast− changing world, the IT business is always a trending market. Programming is one of the many skills required to be successful in the IT industry. There are numerous programming languages that are used for a variety of purposes. Python is a trendy programming language that is known for its versatility and can be learned and deployed ... Read More

6K+ Views
In this article, we are going to learn to show inheritance in class using go programming. Inheritance In Golang − One of the key ideas in object-oriented programming is inheritance, which refers to passing on the properties of the superclass to the base class. As classes are not supported by Golang, inheritance occurs through struct embedding. Since structs cannot be directly extended, we must instead use the idea of composition to create new objects using the struct. So, it's safe to say that Golang doesn't support inheritance. Example 1 Golang Program to Show Inheritance in Class The following code shows ... Read More

405 Views
The hashtable collection in C# is a non-generic collection of key-value pairs that are organized based on the key’s hash code. The key is used to access the elements in the hashtable collection. Hashing helps us to efficiently retrieve data and eliminates the need for costly techniques of searching data. Hashing technique used the key itself to locate the data. This hashtable key is immutable and does not allow duplicate entries in the hashtable. The Hashtable class is defined in the System.Collections namespace provides the base class libraries for hashtable collection in C#. This Hashtable class is used to create ... Read More