Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created May 24, 2021 12:33
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/a3c938faf37d6ceda5d5e9b9c950f4cc to your computer and use it in GitHub Desktop.
Save amankharwal/a3c938faf37d6ceda5d5e9b9c950f4cc to your computer and use it in GitHub Desktop.
names = ["Aman", "Hritika", "Akanksha"]
age = [22, 21, 24]
index = 0
for i in names:
print("My Name is ", names[index], "I am ", age[index], "years old")
index = index + 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment