Vikram Chiluka has Published 288 Articles

Is the Python platform independent?

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 18:09:35

3K+ Views

In this article, we will learn the Is the Python platform independent or Not in detail Python Python is a high-level, object-oriented, dynamic, multipurpose, platform-independent programming language i.e multi-paradigm language. It is used in areas such as data analytics, robotics, and artificial intelligence, machine learning. Python supports several programming paradigms, ... Read More

How does Python compare to PHP in ease of learning for new programmers?

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 18:08:35

197 Views

In this article, we will learn In terms of ease of learning for new programmers, how does Python compare to PHP? Comparison of Uses and Easiness: Python vs PHP Python Python is a programming language that can be used for a variety of purposes hence it is a general-purpose programming ... Read More

How do you code a vending machine in Python?

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 18:07:36

5K+ Views

In this article, we will learn to code a vending machine in Python. Vending Machine with Python Each item will have its product id, product name, and product cost properties stored in a dictionary. a list that is currently empty but will later be filled with all the selected items. ... Read More

How do I read a .data file in Python?

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 18:03:41

7K+ Views

In this article, we will learn what is a .data file and how to read a .data file in python. What is a .data file? .data files were created to store information/data. Data in this format is frequently placed in either a comma-separated value format or a tab-separated value format. ... Read More

Can I get a job with a Python certificate?

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 18:03:14

918 Views

In this article, we will discuss whether or not we can get a job with a Python certificate, as well as what types of jobs we can acquire after getting the Python certificate. What is Python? Python is a high-level, object-oriented, dynamic, interpreted, and multipurpose programming language i.e multi-paradigm language. ... Read More

Sort the matrix row-wise and column-wise using Python

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 13:52:02

1K+ Views

In this article, we will learn a python program to sort the matrix row-wise and column-wise. Assume we have taken an input MxM matrix. We will now sort the given input matrix row-wise and column-wise using the nested for loop. Algorithm (Steps) Following are the Algorithms/steps to be followed to ... Read More

Remove list elements larger than a specific value using Python

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 13:49:54

5K+ Views

In this article, we will learn how to remove elements larger than a specific value from a list in Python. Methods Used The following are the various methods used to accomplish this task − Using remove() Method Using List Comprehension Using the filter() method & lambda function Method ... Read More

Remove leading zeros from a Number given as a string using Python

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 13:46:49

11K+ Views

In this article, we will learn a python program to remove leading zeros from a number given as a string. Assume we have taken a number in string format. We will now remove all the leading zeros(zeros present at the beginning of a number) using the below-given methods. Methods Used ... Read More

Python program to print matrix in a snake pattern

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 13:45:34

2K+ Views

In this article, we will learn a python program to print a matrix in a snake pattern. Assume we have taken the n x n matrix. We will now print the input matrix in a snake pattern using the below-mentioned methods. Methods Used The following are the various methods used ... Read More

Python program to find Sum of a sublist

Vikram Chiluka

Vikram Chiluka

Updated on 31-Jan-2023 13:44:19

2K+ Views

In this article, we will learn a python program to find the sum of a sublist. Methods Used The following are the various methods to accomplish this task − Using For Loop(Brute Code) Using Cumulative Sum Method Using sum() Function Using math.fsum() Function Using For Loop (Brute Code) ... Read More

Previous 1 ... 4 5 6 7 8 ... 29 Next
Advertisements