Posts

Showing posts with the label Python-lesson30

Python- FOR(review+application)

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/yzh-cjji-eeg ------------------------------------------------------------------------------------------------------------ By the end of this session, you will be able to: Understand and apply the concept of FOR loop Apply the concept learnt- For, continue, break and range and predict the output in given situations create appropriate programing code to solve the given questions. ------------------------------------------------------------------------------------------------------------ Python For Loops A  for  loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). This is less like the  for  keyword in other programming languages, and works more like an iterator method as...