파이썬 입문 연습문제 풀기--이루 말할 수 없는 마술사

파이썬 입문 문제 전체 - 인덱스
"마술사"연습을 완성하기 위해 작성한 프로그램에서makegreat ()의 함수로 마술사 목록을 수정하고 모든 마술사의 이름에 'the Great' 를 표시합니다.호출 함수 showmagicians (), 마술사 리스트가 바뀌었는지 확인하세요.
#        
def make_great(names):
    names = ["the great " + name for name in names]
    return names
def show_magicians(names):
    for name in names:
        print(name)

names = ['ling', 'hui', 'he']
names = make_great(names)
show_magicians(names)

출력:
the great ling
the great hui
the great he

좋은 웹페이지 즐겨찾기