Advertisement
FelipeNeto2

.append(PYTHON)

Dec 10th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. orders = ['daisies', 'periwinkle']
  2.  
  3. print(orders)
  4.  
  5. orders.append('tulips')
  6. orders.append('roses')
  7.  
  8. print(orders)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement