79163416

Date: 2024-11-06 16:24:03
Score: 1.5
Natty:
Report link

Here is how we can do this

k = ['name', 'age', 'city']    
v = ('Zubair', 22, 'Pakistan') 

d = dict(zip(k, v))

print(f"Name\t{d['name']}")
print(f"Age\t\t{d['age']}")
print(f"City\t{d['city']}")

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zubair Jamil