top of page
Search
break and continue in python
So break and continue theoretically same as other programming language.taking a small example to demonstrate both in Python. break...

Abhinaw Tripathi
Dec 15, 20171 min read
4 views
0 comments
Loops in Python
Loops: let's take a example of list. eg: students_names = ["Abhinaw", "Aman", "Ashish", "Himanshu'] if you want to print single element...

Abhinaw Tripathi
Dec 13, 20172 min read
5 views
0 comments
Lists in Python
So Lists,some time we want to form multiple objects under a single variable name.To define a list in python.you have to do something like...

Abhinaw Tripathi
Dec 12, 20172 min read
2 views
0 comments
If Statements in Python
If Statement is very simple in Python.Let me give you an example. number = 5 if number == 5: print("Number is 5") else: print("Number is...

Abhinaw Tripathi
Dec 12, 20171 min read
5 views
0 comments
Boolean and None Type in Python
As you know about boolean in other programming language. it is same in python too but with small differences .boolean can be a true or...

Abhinaw Tripathi
Dec 12, 20171 min read
33 views
0 comments
String in Python
We use string to represent text.by default it's Unicode text in Python 3 but ASCII text in Python 2.And this is one of the big advantage...

Abhinaw Tripathi
Dec 11, 20172 min read
11 views
0 comments
Integers and Floasts in Python
Defining integers in Python is very easy. eg: answer=42 pi=3.14159 Python 3 also introduces complex numbers as a type.There is no real...

Abhinaw Tripathi
Dec 11, 20171 min read
8 views
0 comments
Types in Python
In Python type has been handled differently than other programming languages.in many programming languages including JAVA or C# .you have...

Abhinaw Tripathi
Dec 7, 20171 min read
4 views
0 comments
Installing PyCharm
Although we have started using IDLE for python.now we will use PyCharm integrated Developer environment.this is excellent IDE and this is...

Abhinaw Tripathi
Dec 7, 20171 min read
8 views
0 comments
The awesomeness of Python
One you install python.you will have a handy tool called PowerShell or python terminal.if you just type Python 3 then you will have an...

Abhinaw Tripathi
Dec 7, 20172 min read
3 views
0 comments
Installing Python
Well we talked much about Python. now and next logical steps is installing python. So installing Python involves a download from pyhton...

Abhinaw Tripathi
Nov 24, 20172 min read
2 views
0 comments
Python 2 vs. Python 3
Python 2 vs. Python 3: Actually if you know anything about Python then you must be thinking of which version of Python I should use.the...

Abhinaw Tripathi
Nov 24, 20171 min read
5 views
0 comments
Getting Started With Python
So Guys I am going to teach you about Python basics first .as it is very powerful language.With Python you can build web app,desktop...

Abhinaw Tripathi
Nov 23, 20172 min read
10 views
0 comments
Backtracking | The Knight’s tour problem
So what is "The Knight's tour problem"? A knight's tour is a sequence of moves of a knight on a chessboard such that the knight visits...

Abhinaw Tripathi
Nov 17, 20174 min read
86 views
0 comments


Backtracking question asked in Samsung and Amazon - Write a program to print all permutations of a g
A permutation, also called an “arrangement number” or “order,” is a rearrangement of the elements of an ordered list S into a one-to-one...

Abhinaw Tripathi
Nov 17, 20171 min read
16 views
0 comments
Dynamic Programming | Matrix Chain Multiplication
Given a sequence of matrices, find the most efficient way to multiply these matrices together. The problem is not actually to perform the...

Abhinaw Tripathi
Nov 16, 20173 min read
24 views
0 comments
Dynamic Programming - Edit Distance
Question : Given two strings str1 and str2 and below operations that can performed on str1. Find minimum number of edits (operations)...

Abhinaw Tripathi
Nov 15, 20172 min read
16 views
0 comments
Top Common Mistakes Done by Android Developer
Top Common Mistakes Done by Android Developer Android. What’s not to like about this platform? It’s free, it’s customizable, it’s...

Abhinaw Tripathi
Nov 15, 20177 min read
13 views
0 comments


Run-time Stack mechanism in Java
Run-time Stack mechanism in Java Ans: For every thread that you create,JVM (Java virtual machine) creates a run-time stack. 1)Each...

Abhinaw Tripathi
Oct 3, 20172 min read
124 views
0 comments
Most frequent word in an array of strings? OR
Most frequent word in an array of strings? OR Find winner of an election where votes are represented as candidate names? Question: Most...

Abhinaw Tripathi
Oct 3, 20172 min read
903 views
0 comments
bottom of page