Python의 사전에서 키를 제거하는 방법
이 기사에서는pop()
함수 및del
키워드와 같이 Python의 사전에서 키를 제거하는 방법을 소개합니다.
Python에서pop()
함수를 사용하여 사전에서 키 삭제
내장 Python 함수 pop()
를 사용하여 사전에서 키를 삭제할 수 있습니다. 이 메서드의 올바른 구문은 다음과 같습니다.
mydict.pop(key[, default])
이 기능의 세부 사항은 다음과 같습니다.
매개 변수 | 기술 | |
---|---|---|
key |
필수 | 사전에서 제거하려는 키입니다. 사전에 키가 없으면 default 값을 반환합니다. 기본값이 전달되지 않으면 오류가 발생합니다. |
이 함수는 지정된 키를 반환하고 존재하는 경우 사전에서 삭제합니다. 그렇지 않으면 기본값을 반환합니다.
아래 프로그램은이 함수를 사용하여 Python의 사전에서 키를 제거하는 방법을 보여줍니다.
mydict = {"1": "Rose", "2": "Jasmine", "3": "Lili", "4": "Hibiscus"}
print(mydict.pop("2", None))
print(mydict)
출력:
Jasmine
{'1': 'Rose', '3': 'Lili', '4': 'Hibiscus'}
이 함수는 값이 Jasmine
인 2
키를 제거했습니다.
이제 존재하지 않는 키를 제거하려고하면 함수는 다음과 같은 출력을 제공합니다.
mydict = {"1": "Rose", "2": "Jasmine", "3": "Lili", "4": "Hibiscus"}
print(mydict.pop("5", None))
출력:
None
함수가 기본값을 반환했습니다.
Python에서del
키워드를 사용하여 사전에서 키 제거
또한 del
키워드를 사용하여 Python의 사전에서 키를 제거 할 수 있습니다. 이 키워드를 사용하는 올바른 구문은 다음과 같습니다.
del objectName
세부 사항은 다음과 같습니다.
매개 변수 | 기술 | |
---|---|---|
objectName |
필수 | 삭제하고자하는 객체입니다. 모든 데이터 유형 또는 데이터 구조 일 수 있습니다. |
아래 프로그램은이 키워드를 사용하여 Python의 사전에서 키를 제거하는 방법을 보여줍니다.
mydict = {"1": "Rose", "2": "Jasmine", "3": "Lili", "4": "Hibiscus"}
del mydict["3"]
print(mydict)
출력:
{'1': 'Rose', '2': 'Jasmine', '4': 'Hibiscus'}
del
키워드가 값이Lili
인3
키를 제거했습니다.
이제 존재하지 않는 키를 제거해 보겠습니다.
mydict = {"1": "Rose", "2": "Jasmine", "3": "Lili", "4": "Hibiscus"}
del mydict["5"]
print(mydict)
출력:
KeyError: '5'
KeyError
가 발생합니다.
Aditya Raj is a highly skilled technical professional with a background in IT and business, holding an Integrated B.Tech (IT) and MBA (IT) from the Indian Institute of Information Technology Allahabad. With a solid foundation in data analytics, programming languages (C, Java, Python), and software environments, Aditya has excelled in various roles. He has significant experience as a Technical Content Writer for Python on multiple platforms and has interned in data analytics at Apollo Clinics. His projects demonstrate a keen interest in cutting-edge technology and problem-solving, showcasing his proficiency in areas like data mining and software development. Aditya's achievements include securing a top position in a project demonstration competition and gaining certifications in Python, SQL, and digital marketing fundamentals.
GitHub