print.py 116 B

1234
  1. print('test')
  2. print('my name is', 'old wang', 'my age is', 43)
  3. print('format: %s,%04d,%.2f' % ('test', 123, 15.5))