Discuss / Python / while版本

while版本

Topic source

蜗牛搞IT

#1 Created at ... [Delete] [Delete and Lock User]

-- coding: utf-8 --

L = ['Bart', 'Lisa', 'Adam'] n=0 while n<3: print('Hello,',L[n],'!') n=n+1


  • 1

Reply