Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def listAppend(list):
  2.     list.append("g")
  3.  
  4. def main():
  5.     list = ["a", "b", "c", "d", "e", "f"]
  6.     listAppend(list)
  7.  
  8. if __name__ == '__main__':
  9.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement