def profile(name, age, *language):
print('이름 : {0}\t나이 : {1}\t'.format(name, age), end=' ')
for lnag in language:
print(lang, end=' ')
print()
profile('유재석', 20, 'Python', 'Java', 'C', 'C++', 'C#', 'JavaScript')
profile('김태호', 25, 'Kotlin', 'Swift')
요렇게 작성했는데 안되네요 뭐가 문제인지 모르겠어요