Discuss / Python / answer

answer

Topic source
# -*- coding: utf-8 -*-
L = ['Bart', 'Lisa', 'Adam']
for name in L:
    print('Hello, %s!' % name)

  • 1

Reply