Discuss / Python / 123

courage

#1 Created at ... [Delete] [Delete and Lock User]
L = ['Bart', 'Lisa', 'Adam']n=0for a in L:    print(f'hello {a}')    print('hello',a)    print('hello %s'% a)    print('hello {0}'.format(a))while n<4:    print(L[n])    n=n+1

  • 1

Reply