looping and iteration in programming in hindi ( basic concepts of programming)

Looping and iteration 

  Iteration is any time a program repeats a process or sequence
 
 Loops are a common type of iterations

  { जब भी कोई program बार बार repeat होता है तो उसे हम iteration }

  Example 
      Fruits = ["apple" , "bananas" , "orange" ]
  For x in fruits : 
   Print(x)
Output 
Apple
Bananas
Orange 

अलग अलग languages मैं 

Post a Comment

0 Comments