Discuss / Python / 11

classmates = ['Michael', 'Bob', 'Tracy']

n=len(classmates)

m=0

while m<n:

    print('hello,',classmates[m],'!')

    m=m+1

    print()


  • 1

Reply