Python program to Create Dictionary of Numbers 1 to n in (x, x*x) form

number = int(input("Please enter the Maximum Number : "))
myDict = {}
for x in range(1, number + 1):
    myDict[x] = x * x
print("\nDictionary = ", myDict)

OUTPUT:

Please enter the Maximum Number : 20
Dictionary =  {1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81, 10: 100, 11: 121, 12: 144, 13: 169, 14: 196, 15: 225, 16: 256, 17: 289, 18: 324, 19: 361, 20: 400}

Sharing Is Caring

Leave a Comment