Let us look at some of the ways of using the print statement/function in Python.
print("amazon","Echo")
amazon Echo
Thursday
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
# 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
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.
Subscribe to:
Posts (Atom)
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...
-
ICSE Class 5 Computer Studies This lesson will give students a brief introduction to Scratch programming. I am using Scratch3...
-
This blog post is created to support the students taking up the Code Studio courses on Code.org. I have tried to create an answer sheet for ...
-
In this hour of code exercise "Code with Anna and Elsa" you will learn to draw different geomoetric shapes on ice. There are a ...