Q : [‘Life’, ‘is’, ‘too’, ‘short’] 리스트를 Life is too short 문자열로 만들어 출력해 보자.


answer

1
print(" ".join(['Life', 'is', 'too', 'short']))