Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created September 28, 2021 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/af552afddf61fc11cfadf4cb96cc111b to your computer and use it in GitHub Desktop.
Save amankharwal/af552afddf61fc11cfadf4cb96cc111b to your computer and use it in GitHub Desktop.
names = ["Aman", "Akanksha", "John Cena"]
length = list(map(len, names))
index = 0
for i in names:
print(names[index], length[index])
index = index + 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment