https://school.programmers.co.kr/learn/courses/30/lessons/12919
풀이 - 나의 생각
format의 사용법을 알기 위해 기록
예시
name = "Alice"
age = 30
city = "Wonderland"
# 기본 포매팅
print("{} is {} years old.".format(name, age))
# 순서 지정
print("{0} is {1} years old. {0} lives in {2}.".format(name, age, city))
# 키워드 인자 사용
print("{name} is {age} years old. {name} lives in {city}.".format(name=name, age=age, city=city))
# 숫자 포맷팅
pi = 3.14159
print("Pi to two decimal places: {:.2f}".format(pi))
# 중괄호
print("{{}}".format())
# 출력
# Alice is 30 years old.
# Alice is 30 years old. Alice lives in Wonderland.
# Alice is 30 years old. Alice lives in Wonderland.
# Pi to two decimal places: 3.14
# {}
코드
def solution(seoul):
for idx, name in enumerate(seoul):
if name == "Kim":
answer = "김서방은 "+str(idx)+"에 있다"
return answer
def solution(seoul):
return "김서방은 {}에 있다".format(seoul.index("Kim"))
728x90
'프로그래머스 > Lv.1' 카테고리의 다른 글
삼총사 - Python, combinations (0) | 2024.11.30 |
---|---|
시저 암호 - Python, ord, 시저코드 (1) | 2024.11.28 |
과일 장수 - Pyton (0) | 2024.11.27 |
Summer/Winter Coding(~2018) > 소수 만들기 - Pyton, Combinations, 조합, 소수 (0) | 2024.11.26 |
[PCCP 기출문제] 1번 / 동영상 재생기 - Pyton, f_string (0) | 2024.11.25 |