How to guide, will be used to classify all post related to a technical issue and problem that we’ll have faced in day to day work.

Read more about the article Master Python Function and Argument Types | Lambda expression – 10 mins read
Function in Python

Master Python Function and Argument Types | Lambda expression – 10 mins read

Python function is very important from programmers prespective. Declaration and calling of python function is quite easy. def keyword is used to start function definition .It is followed by function name an parameters within small braces.For small function that contain only one expression, lambda expression can be used in place of standard function. Lambda expression are tricky ones but saves a lot of time if you master them. Let's get started with "Function in Python and types of function arguments".

Continue ReadingMaster Python Function and Argument Types | Lambda expression – 10 mins read
Read more about the article Stop you are doing wrong way | Python loops with else clause | 6 mins read
Python Loop and Iterations

Stop you are doing wrong way | Python loops with else clause | 6 mins read

Python loops and iterations in Python are extremely important from a programmers perspective. Loops in Python are used to run a piece of code more than one time. Python provides else clause with for and while loop that solves many problems in few lines. You will learn through examples why the else part is so important and in which scenario it is used. We will also learn some keywords like a break, continue etc and their uses. So let's get started with today's Python Tutorial.

Continue ReadingStop you are doing wrong way | Python loops with else clause | 6 mins read
Read more about the article Effective way of using Python Conditional Statements and Logical Operators | 6 mins read
Python Conditional Statements

Effective way of using Python Conditional Statements and Logical Operators | 6 mins read

Holla, welcome to today's tutorial on 'Python Conditional statements and logical operators'. Conditional statements are used to break the code into small pieces that execute under some circumstances. Learn various use of if,elif and else statement along with syntax and sample code. The pythonic way to use logical operators reduce the code into few lines.

Continue ReadingEffective way of using Python Conditional Statements and Logical Operators | 6 mins read
Read more about the article Master Python Dictionary and its methods | 6 mins read
Python Dictionary

Master Python Dictionary and its methods | 6 mins read

Python Dictionary and its methods is an important aspect Python programming. Dictionary datatype is used for membership testing or to count occurrence of an element in O(1) time complexity. Python Dictionary methods are often used to access, add or delete key:value pairs. Let's get started with today's Python tutorial.

Continue ReadingMaster Python Dictionary and its methods | 6 mins read
Read more about the article No, they are not same | Python set vs frozenset | 7 mins read
Understand the difference b/w python set and frozenset

No, they are not same | Python set vs frozenset | 7 mins read

Python set and frozenset in python are different. The SET data type is used for membership testing and unique element count. Python Frozenset is hashable while the SET in python is not hashable. There are various cases when frozenset is used instead of a python SET. Let's look at each of them in detail in today's Python tutorial.

Continue ReadingNo, they are not same | Python set vs frozenset | 7 mins read
Read more about the article Step wise Guide to install python in just 5 mins | Python made Easy
Python Installation Guide

Step wise Guide to install python in just 5 mins | Python made Easy

Hello and welcome back to another exciting tutorial on "Python Installation". In this tutorial, you'll get a glimpse of "Installing Python on different platform" such as Windows, Mac or Linux. Let's begin our "Install python on any platform" with Python Installation on Windows.

Continue ReadingStep wise Guide to install python in just 5 mins | Python made Easy
Read more about the article Pandas Read_CSV? It’s Easy If You Do It Smart in 5 Min.
Python Tutorial - Pandas Read_CSV Python.

Pandas Read_CSV? It’s Easy If You Do It Smart in 5 Min.

Holla, welcome to today's tutorial on How to load CSV file into a pandas dataframe using read_csv method. Pandas read_csv method is an easy and powerful method. You can use Python read_csv method to load any file which is delimited.

Continue ReadingPandas Read_CSV? It’s Easy If You Do It Smart in 5 Min.
Read more about the article How to set up BT WIFI Extender. Brilliant 3 step guide!
BT Wifi Extender Setup Using WPS Method

How to set up BT WIFI Extender. Brilliant 3 step guide!

How to set up BT WIFI Extender is a brilliant 3 step guide. It will help you in setting up your BT wifi extender. You have to follow three simple steps to connect your wifi extender to your BT broadband router. The wifi extender setup guide explains the WPS method i.e. WiFi Protected Setup. The BT wifi extender setup guide applies to various BT wifi booster models.

Continue ReadingHow to set up BT WIFI Extender. Brilliant 3 step guide!
Read more about the article OMG! The Best Apple iPhone SE Ever! iPhone SE starting from $399! | iPhone 11 pro.
topictrick iphone SE

OMG! The Best Apple iPhone SE Ever! iPhone SE starting from $399! | iPhone 11 pro.

Apple launched iPhone SE it's a second-generation smartphone powered by iPhone Pro 11 A13 Bionic chip. iPhone SE price starts from $399 and it's a budget smartphone. iPhone SE 2020 comes with three different storage capacity variants 64GB, 128GB, 256GB. It has a new improved camera, with dual sim support. In short, Apple has given a tough competition to its competitor.

Continue ReadingOMG! The Best Apple iPhone SE Ever! iPhone SE starting from $399! | iPhone 11 pro.
Read more about the article Python Tutorial: Python Tuple, Tuple in Python, Python Tutorial Awesome 20 min Guide.
Python Tuple

Python Tutorial: Python Tuple, Tuple in Python, Python Tutorial Awesome 20 min Guide.

A Python tuple is a Python sequence. They are generally used to store a group of elements, which do not change throughout the program. Since tuples are immutable, so you can only use a basic set of functions/methods such as len, max, min, sort, index, count. But you can append or change a tuple by using programming techniques. Let's go through all these techniques and code snippets in this Python tutorial.

Continue ReadingPython Tutorial: Python Tuple, Tuple in Python, Python Tutorial Awesome 20 min Guide.