Computer Science, asked by krirarthkaushik7935, 10 months ago

Find and write the output of following python code
d={"john":40,"peter":45} print(list(d values()))

Answers

Answered by alimukhtar
0
print(list(d.values())) = [40,45]
Similar questions