top of page
Search
Abhinaw Tripathi
Dec 26, 20171 min read
Lambda Functions in Python
So Lambda Functions are just an anonymous function.they are very simple just saves your space and time.they are useful in case of higher ...
20 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
Generator Function - Yield Python
So Yield is a keyword.first let's take an example. student = [] def read_file(): try: f=open("students.txt","r") for student in...
7 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
Opening,Reading and Writing Python
Let's save our data in a file and read from that file again when we re-open our app. So let's take an example: Let's take an example: ...
16 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
Nested Functions and Closures
Let's take an example: def get_students(): students=["Abhinaw","Aman"] def get_students_titlecase(): students_titlecase = [] for...
12 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
Create a simple Python Student app
Let's create an app where user will provide the student name and Student I'd from the console. eg: student.py students =[] def...
15 views0 comments
Abhinaw Tripathi
Dec 21, 20172 min read
Functions Arguments in Python
So argument is parameters where you can provide the values to functions and also useful in case you don't have to make variable...
7 views0 comments
Abhinaw Tripathi
Dec 21, 20171 min read
Functions in Python
Functions A functions is a block organized and re-usable code and use to perform certain action.Pyhthon comes with lot of built in...
8 views0 comments
Abhinaw Tripathi
Dec 15, 20171 min read
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...
4 views0 comments
Abhinaw Tripathi
Dec 13, 20172 min read
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...
5 views0 comments
Abhinaw Tripathi
Dec 12, 20172 min read
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...
2 views0 comments
Abhinaw Tripathi
Dec 12, 20171 min read
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...
5 views0 comments
Abhinaw Tripathi
Dec 12, 20171 min read
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...
33 views0 comments
Abhinaw Tripathi
Dec 11, 20172 min read
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...
11 views0 comments
Abhinaw Tripathi
Dec 11, 20171 min read
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...
8 views0 comments
Abhinaw Tripathi
Dec 7, 20171 min read
Types in Python
In Python type has been handled differently than other programming languages.in many programming languages including JAVA or C# .you have...
4 views0 comments
Abhinaw Tripathi
Dec 7, 20171 min read
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...
8 views0 comments
Abhinaw Tripathi
Dec 7, 20172 min read
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...
3 views0 comments
Abhinaw Tripathi
Nov 24, 20171 min read
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...
5 views0 comments
bottom of page