Thursday

Learn Python Easy Way - Print and Format

Let us look at some of the ways of using the print statement/function in Python.

print("amazon","Echo")
amazon Echo

Friday

For and While Loops in Python Examples 1

Below is the first  example program of Loops

# This program asks user to input a integer number
# It sums all the integers from 1 to the user input
# The for loop runs the same program several times

Learn Python Easy way - User Input

Let us learn how user input is received in Python

Let us do the most basic exercise

x = input()
3
print(x)
3

Thursday

Learn Python Easy Way - Sets

Let us learn what a set is in Python. We use the term set in our language for example when I say, "I have a set of colours" that means I have a set of some colours that are unique, all different colors. Usually "a set" would denote a unique set of items, and that is how it is implemented in Python. The set in Python is used similar to the "Set Theory" in Mathematics. We can do operations like Union, Intersection, Difference on sets in Python.

Featured Post

Creating Games in Scratch for ICSE Class 6

An Introduction to Creating Games in Scratch  for ICSE Class 6 Hello friends, I hope you have already read the previous post on An Int...