test2.py 89 B

12345678
  1. a = [1,2,3,4]
  2. b = 'sample string'
  3. print str(a)
  4. print repr(a)
  5. print str(b)
  6. print repr(b)