Advertisement
Guest User

+= vs _append with overrides

a guest
Feb 28th, 2023
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. VAR += " A "
  2. VAR_mymachine += " B "
  3. # Result is VAR = " B "
  4.  
  5. VAR_append = " A "
  6. VAR_append_mymachine = " B "
  7. # Result is VAR = " A B "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement