Skip to content

Instantly share code, notes, and snippets.

@Sachin-crypto
Created March 23, 2023 17:01
Show Gist options
  • Save Sachin-crypto/d526fd8cd5cc814f8f1f10ed1e828725 to your computer and use it in GitHub Desktop.
Save Sachin-crypto/d526fd8cd5cc814f8f1f10ed1e828725 to your computer and use it in GitHub Desktop.
A simple demonstration of list append()
# List of names
friends = ['Sachin', 'Rishu', 'Yashwant']
# Printing the original list
print('Original List:', friends)
# Appending an element
friends.append('Abhishek')
# Printing the updated list
print('New List: ', friends)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment