Guest User

Untitled

a guest
Jul 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. a = list(map(str, input().split()))
  2. b = list()
  3. b += a[0]
  4. b += a[1]
  5. print(b)
  6.  
  7. def __add__(self, value):
  8. if not isinstance(value, list):
  9. value = list(value)
  10. ...
  11.  
  12. b.append(a[0])
  13.  
  14. b += [a[0]]
Add Comment
Please, Sign In to add comment