Posts

Showing posts with the label Python- Lesson-36(a)

FOR - revision

Image
Good Morning Dear boys Today we will sum up the concept of FOR loop. ----------------------------------------------------------------------------------------- The Google meet link for today's class is: meet.google.com/mrc-qmqt-fiv -------------------------------------------------------------------------------------------------------- By the end of this session, you will be able to: Understand and apply the concept of FOR loop Apply the concept learnt- For and predict the output in given situations create appropriate programing code to solve the given questions -------------------------------------------------------------------------------------------------------------- Following problem was shared with you in the last session: Write a program in python to print the first 10 multiples of 5. For this question  print("The Table of 5 is as follows:") for  x  in   range  (1 , 11 , 1 ):    print ("5 x ",x,"=",5*...