Skip to content

Instantly share code, notes, and snippets.

@sai-sondarkar
Created June 30, 2021 16:05
Show Gist options
  • Save sai-sondarkar/a14cd0de73316d151285f8164c86e546 to your computer and use it in GitHub Desktop.
Save sai-sondarkar/a14cd0de73316d151285f8164c86e546 to your computer and use it in GitHub Desktop.
howManyContact = 3
contactDit = {}
for i in range(howManyContact):
name = input("Ënter Name " )
number1 = input("Ënter number1 " )
number2 = input("Ënter number2 " )
imageUrl = input("Ënter imageUrl " )
email = input("Ënter email " )
website = input("Ënter website " )
contactDit[name] = {
"name":name,
"number1":number1,
"number2":number2,
"imageUrl":imageUrl,
"email":email,
"website":website
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment