format1 서울에서 김서방 찾기 - Python, format https://school.programmers.co.kr/learn/courses/30/lessons/12919 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 풀이 - 나의 생각format의 사용법을 알기 위해 기록 예시 name = "Alice"age = 30city = "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 .. 2024. 11. 27. 이전 1 다음