Discuss / Python / 作业

作业

Topic source

# -*- coding:utf- -*-

L=['Bart','Song','Zhang']

n=3

while n>0:

    n=n-1

    print('hello,'+L[n])


  • 1

Reply