• 회원가입
  • 로그인
  • 구글아이디로 로그인

[string] Python - format_map() 메서드 ★ - 문자열 안 지정 값의 형식 지정. (= 포맷맵)

3265  
format_map() 예제

 

point = {'x':3,'y':-4}

print('{x} {y}'.format(**point))

 

결과값: 3 -4

 

format_map() 정의

 

문자열 안 지정 값을 형식 변경 후, 변경된 문자열 반환.

 


cf.

 

string.format(** mapping)

dict를 복사


string.format_map(mapping)

새 dict 생성. (※ dict 하위 클래스로 작업 시 유용.)

 

 

format_map() 구문

 

string.format_map(mapping)

 


[매개변수]

 

mapping

필수. dictionary 형태 취함. 

 

 

formap_map() 예제 

예제1 - 2개 경우

 

point = {'x':3,'y':-4}

print('{x} {y}'.format_map(point))

# 3 -4

 


예제2 - 3개 경우

 

point = {'x':3,'y':-4, 'z': 0}

print('{x} {y} {z}'.format_map(point))

# 3 -4 0

 


예제3 - 클래스 경우

 

 

 

class Hz(dict):

    def __missing__(self, key):

      return key


print('({x}, {y})'.format_map(Hz(x='4')))

print('({x}, {y})'.format_map(Hz(y='3')))

print('({x}, {y})'.format_map(Hz(x='4', y='3')))

 

결과값:

(4, y)

(x, 3)

(4, 3)



분류 제목
basic Python - Home (입문) - 이념 / 추천 링크
basic Python - Intro (소개) - 용도・특징
basic Python - Start (시작) - 파이썬 설치/실행/버전확인
basic Python - Syntax (구문) - 들여쓰기・변수・주석
basic Python - Comment (주석)
basic Python - Variable (변수)
basic Python - DataType (데이터타입) - 자료형
basic Python - Number (숫자)
basic Python - Casting (데이터 타입 변경) - 자료형 변환
basic Python - String (문자열) ★ ※ 색인번호 (= 인덱스) 개념.
basic Python - Boolean (참거짓)
basic Python - Operator (연산자)
basic Python - List (리스트) ★ - 변경 가능한 모음
basic Python - Tuple (투플/튜플) - 변경 불가 모음
basic Python - Set (셋/세트) - '순서(=색인)' 없고, 중복 허용 않는 데이터 모음.
basic Python - Dictionary (딕셔너리) - Key:value 쌍으로 구성된 모음
basic Python - if...elif...else - (이프조건문) ※ 3항연산자 = 삼항연산자
basic Python - While (와일반복문) - 와일문
basic Python - For (포반복문) ★★★★★
basic Python - Function (함수)
1/24
목록
찾아주셔서 감사합니다. Since 2012