0 votes
in Python by
The output of this Python code would be:

select the correct answer from below options

>>> x={1:”X”,2:”Y”,3:”Z”}

>>> del x

1) the del method does not exist for dictionary

2) the del would delete the values present in dictionary

3) the del would delete the entire dictionary

4) the del would delete all the keys in dictionary

1 Answer

0 votes
by
4) the del would delete all the keys in dictionary
...