Names = [''] * 5
Ages = [0] * 5
Heights = [0.00] * 5
for count in range(0,5):
print(count)
name = input("Enter name :")
Names [count] = name
age=input("Enter age :")
Ages[count] = age
height = float(input("Enter height :"))
Heights[count] = height
print("Array of Names")
print (Names)
print("Array of Ages")
print (age)
print("Array of Height")
print (height)