for char in "orange": print(char)
Here we are applying a for loop on the string 'orange' that will print each character of the string as output.
0 Comments