exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 1 question 23 discussion

Actual exam question from Python Institute's PCEP-30-02
Question #: 23
Topic #: 1
[All PCEP-30-02 Questions]

How would you remove all the items from the d dictionary?
Expected output:

Code:

  • A. d.del()
  • B. d.remove()
  • C. del d
  • D. d.clear()
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
hovnival
1 month, 2 weeks ago
Selected Answer: D
The correct option to remove all items from the dictionary d and result in an empty dictionary {} is: D. d.clear() Explanation: d.clear() removes all items from the dictionary without deleting the dictionary itself. Other options: d.del() and d.remove() are invalid as these methods do not exist for dictionaries. del d deletes the dictionary entirely, resulting in d no longer being defined. Example: d = {'A': 1, 'B': 2, 'C': 3} d.clear() print(d) # Output: {}
upvoted 2 times
...
christostz03
5 months, 2 weeks ago
d is the correct answer
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago