Computer Science, asked by amanrastogi1479, 10 months ago

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

Answers

Answered by chiefprashant
1

Answer:

#Python

Explanation:

1.

You missed a fullstop there between "d" and "values".

2.

After correcting it this is the output-

[ 40, 45]

Similar questions