Best Laptop
Micromax IN series Launch in India

Micromax IN series Launch in India

‘Made In India’ Micromax IN series Launch in India, price, specifications and other updates Micromax IN series Launch in India, Price, Features Live Updates: Micromax is gearing up for its big comeback with the launch of its new IN series of smartphones today. The event will kick off at 12:00 PM today and the livestream for this will be hosted on the official Micromax website and Flipkart. The Indian smartphone brand is expected to launch two devices in the price range of…

Read More Read More

Difference between logical and bitwise operator

Difference between logical and bitwise operator

Hi Friends, welcome to yet another session in our Python Tutorial Series. Today we will see the Difference between logical and bitwise operator in Python. We have already seen mathematical operators in Python in another session: Lets see below logical and bitwise operators one by one: Logical Operator: Logical operators return the logical output of the expression on which the operator is applied. The answer can be either True/False or 1/0. Below are the logical operators: and operator – This…

Read More Read More

‘Aapli Aaji’ You Tube Channel

‘Aapli Aaji’ You Tube Channel

Maharashtra’s Aapli Aaji Suman Dhamne became a you tube star – channel crosses 6 lakh subscribers Maharashtra’s Suman Dhamne, a 70 year old grand mother became a you tube sensation due to her recipes. Even though she does not does have a proper schooling and education, but she still managed to run her you tube channel ‘Aapli Aaji’. This channel has over 6 lakh subscribers in 6 months. The journey started when her grandson asked her for a pav bhaji…

Read More Read More

break and continue statement in Python

break and continue statement in Python

In this session, we will see the use and functionality of break and continue statement in Python. ‘break’ and ‘continue’ are the statement that are used to change the course of ‘for’ and ‘while’ loops. In other words, you can control the execution of these loops using break and continue. They are the Python reserved keywords and you cannot use them for naming user defined variables or functions. break – There might be some situation where you want to exit…

Read More Read More

What is Big Data And Its Characteristics – Four V of Big Data ?

What is Big Data And Its Characteristics – Four V of Big Data ?

Hi Friends, this is my new step of by blog into Big Data skill set. Big Data as we all know is a very growing field and a highly demanding one. Today I will focus on providing some insights into What is Big Data And Its Characteristics – Four V of Big Data ? In the coming days, I will be showing some tutorials on doing hands-on work on Big Data technologies like Hadoop, Spark, Pig etc. What is Big…

Read More Read More

for loop in Python

for loop in Python

Hi Friends…lets continue our Python Tutorials journey with ‘for loop in Python’. Python for loop is used is when we want to iterate over an activity more than one time.Although while loop also does the same thing but we use for loop, when we know the number of times we want our loop to execute. In while loop, we are not sure how many times we want to execute; the loop continues till the condition is True. Also, in for…

Read More Read More

Python while loop

Python while loop

In this Python Tutorial, we will see the use of Python while loop. But before that lets ask what exactly is loop and why do we need it. Loop is something which performs some activity as long as you want it to be done. For example, if we want to play tennis if it’s not raining outside, then we may write something like this: while its_not_raining_outside: lets_play_tennis() Indentation rules work here just like if-else statement we saw in previous session….

Read More Read More

if-else statement in Python

if-else statement in Python

In this tutorial, we will see the use of if-else statement in Python. It is useful when we want to take decision based on some condition. For example, if I am hungry, I will go for lunch. Here I am deciding that I will go for lunch when I am hungry. To code such things, we need if-else statement. Before directly going for Python if-else statement, let’s just revise the Python Operator priorities table and put some more operators: Priority…

Read More Read More

Python Tutorial 6 – Use of Input() function

Python Tutorial 6 – Use of Input() function

Today we will study about the use of Python input function – interacting with computer. This function will enable you to get some data from computer. In a way, print function sends data to the console and input function gets the data from console. The data received via input function can be used in the program for further calculations. The data received via input function always carry string data type. To treat the data as integer or float, we need…

Read More Read More

Python Tutorial 5 – Python Operators

Python Tutorial 5 – Python Operators

Let’s begin our another session use of Python Operators and their priority while using them. Below is the list of commonly used mathematical operators mentioned in the priority in which they will be executed: Operator Usage Priority +(Plus) and (-)minus Used as unary operator 1 **(exponential)   2 *, /, //, %   3 + and – Used as binary operator 4 1) Using plus and minus operator in print function print(3+4) = 7print(3+4.0) = 7.0print(5-4) = 1print(10.0-2) = 8.0…

Read More Read More

Python 3.11.1 Features