Kiran-1997 / G-KIRAN-KUMAR

PROJECT 2
0 stars 0 forks source link

WHAT ARE THE FRUITS NAME #4

Open Kiran-1997 opened 1 year ago

Kiran-1997 commented 1 year ago

fruits=["banas","watermelon","grapes","mangoes"] i=0 while i<len(fruits): print(fruits[i]) i = i+1

fruits = ["banas","watermelon","grapes","mangoes"] for item in fruits: print(item)

Kiran-1997 commented 1 year ago

story="ALPHA is good.\n he\tis very good" print(story) story=("ALPHA is good.\n he\tis ve\ry good") print(story)