Cara Mendapatkan Input Pengguna Daftar Daftar Dalam Python
lst = [ ]
n = int(input("Enter number of elements : "))
for i in range(0, n):
ele = [input(), int(input())]
lst.append(ele)
print(lst)
Bright Butterfly