목록파이썬 (201)
SeouliteLab
예제: def get_substring(input_string, start, end): if start len(input_string) or start >= end: return None return input_string[start:end] my_string = "Hello, World!" substring = get_substring(my_string, 7, 12) if substring is not None: print("부분 문자열:", substring) else: print("유효하지 않은 인덱스입니다.") 설명: 위의 코드는 문자열에서 부분 문자열을 가져오는 방법을 보여줍니다. get_substring 함수는 문자열과 부분 문자열의 시작 인덱스와 끝 인덱스를 입력받아서..
예제: def get_last_element(input_list): if input_list: return input_list[-1] else: return None my_list = [1, 2, 3, 4, 5] last_element = get_last_element(my_list) if last_element is not None: print("리스트의 마지막 요소:", last_element) else: print("리스트가 비어 있습니다.") 설명: 위의 코드는 리스트의 마지막 요소를 가져오는 방법을 보여줍니다. get_last_element 함수는 리스트를 입력받아서 해당 리스트의 마지막 요소를 반환합니다. 이때, 리스트의 인덱스 -1을 사용하여 마지막 요소를 가져옵니다. 함수 내부에서는 입력된..
예제: from datetime import datetime def convert_to_datetime(date_string, format): try: datetime_obj = datetime.strptime(date_string, format) return datetime_obj except ValueError: return None date_string = "2024-04-25 08:30:00" format = "%Y-%m-%d %H:%M:%S" datetime_obj = convert_to_datetime(date_string, format) if datetime_obj: print("변환된 날짜 및 시간:", datetime_obj) else: print("올바른 형식으로 입력하세요.") 설명:..
예제: class Color: RED = '\033[91m' GREEN = '\033[92m' YELLOW = '\033[93m' BLUE = '\033[94m' RESET = '\033[0m' def print_colored_text(text, color): colored_text = color + text + Color.RESET print(colored_text) print_colored_text("빨간색 텍스트", Color.RED) print_colored_text("초록색 텍스트", Color.GREEN) print_colored_text("노란색 텍스트", Color.YELLOW) print_colored_text("파란..
예제: def parse_string_to_number(string): try: number = float(string) # 부동소수점으로 변환 시도 if number.is_integer(): return int(number) # 정수로 변환 가능하면 정수 반환 else: return number # 부동소수점 반환 except ValueError: return None # 변환 실패 시 None 반환 string1 = "3.14" string2 = "42" string3 = "apple" result1 = parse_string_to_number(string1) result2 = parse_string_to_number(string2) result3 = parse_string_to_number(stri..
예제: def check_key(dictionary, key): if key in dictionary: print(f"'{key}' 키는 딕셔너리에 이미 존재합니다.") else: print(f"'{key}' 키는 딕셔너리에 존재하지 않습니다.") my_dict = {'apple': 3, 'banana': 5, 'orange': 2} check_key(my_dict, 'apple') check_key(my_dict, 'grape') 설명: 위의 코드는 주어진 딕셔너리에 특정 키가 이미 존재하는지 확인하는 함수를 구현한 예제입니다. check_key 함수는 두 개의 인자를 받습니다. 첫 번째 인자는 딕셔너리..
예제: def concatenate_lists(list1, list2): concatenated_list = list1 + list2 return concatenated_list list1 = [1, 2, 3] list2 = ['a', 'b', 'c'] result = concatenate_lists(list1, list2) print("두 리스트를 연결한 결과:", result) 설명: 위의 코드는 두 개의 리스트를 연결하는 함수를 정의하고 호출하는 예제입니다. concatenate_lists 함수는 두 개의 리스트를 인자로 받아서 이를 연결한 새로운 리스트를 반환합니다. 이때, 파이썬의 + 연산자를 사용하여 두 리스트를 연결합니다. 그리고 나서 list1과 ..
예제: def copy_file(source, destination): try: with open(source, 'rb') as f_source: with open(destination, 'wb') as f_dest: for line in f_source: f_dest.write(line) print("파일 복사가 완료되었습니다.") except FileNotFoundError: print("파일을 찾을 수 없습니다.") except IOError: print("파일을 복사하는 중 오류가 발생했습니다.") source_file = "source.txt" destination_file = "destination.txt" copy_file(source_file, destinati..
파이썬에서는 한 줄에 여러 예외를 처리하는 방법을 제공합니다. 이를 통해 코드를 간결하게 유지하고 예외 처리를 효율적으로 수행할 수 있습니다. 예제: try: # 예외가 발생할 수 있는 코드 result = 10 / 0 except (ZeroDivisionError, ValueError) as e: # 여러 예외를 한 줄에 처리 print("예외가 발생했습니다:", e) 설명: 위의 코드에서는 try-except 문을 사용하여 여러 예외를 한 줄에 처리하는 방법을 보여줍니다. try 블록에서는 예외가 발생할 수 있는 코드를 실행합니다. 이 예제에서는 0으로 나누는 연산을 시도하고 있습니다. except 블록에서는 여러 예외를 동시에 처리합니다. 괄호 안에 처리하고자 하는 예외를 나열하고, 각 예외에 대한..
파이썬에서는 딕셔너리를 값에 따라 정렬하는 기능을 제공합니다. 이를 통해 딕셔너리의 값을 기준으로 정렬된 새로운 딕셔너리를 생성할 수 있습니다. 예제: my_dict = {'apple': 3, 'banana': 5, 'orange': 2} sorted_dict = dict(sorted(my_dict.items(), key=lambda item: item[1])) print("값으로 정렬된 딕셔너리:", sorted_dict) 설명: 위의 코드에서는 sorted() 함수를 사용하여 딕셔너리를 값에 따라 정렬합니다. items() 메서드를 사용하여 딕셔너리의 키-값 쌍을 가져온 후, key 매개변수를 통해 정렬 기준을 설정합니다. 람다 함수를 사용하여 각 항목의 값..