list1 = [1, 2, 3, 4]
list2 = ['python', 'java', 'c', 'c++']
list3 = [1.45, 2.89, 3.14, 4.24]
list_of_lists = [list(l) for l in zip(list1, list2, list3)]
print(list_of_lists)
'''
run:
[[1, 'python', 1.45], [2, 'java', 2.89], [3, 'c', 3.14], [4, 'c++', 4.24]]
'''