words = ["apple", "banana", "cherry"]
# words를 " - "으로 연결된 하나의 문자열로 만들어 출력해 보세요.





# 사용자로부터 문자열을 입력받아 각 글자 사이에 *를 넣어 출력하는 프로그램을 작성하세요.
# 예시:
# 입력: hello  
# 출력: h*e*l*l*o




items = ["1", "2", "3", "4", "5"]
# 이 리스트의 요소를 ' + '으로 연결한 문자열과, 각 숫자를 정수로 바꾸어 모두 더한 결과를 출력하세요.
# 출력 예시:
# 1 + 2 + 3 + 4 + 5  
# 합계: 15

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: