1-2 출력 프로그램 만들기

신정빈·2022년 7월 1일
1

준비하시고 (Go) 쏘세요 (Oh)
That that I like that (Like that)
기분 좋아 Babe (Babe)
흔들어 좌 우 위 아래로 (Sing it)
One two three to the four (Sing it)
That that I like that
That that I like that babe
That that I like that
It's like that that yo
That that I like that
That that I like that babe
That that I like that
It's like that
싸이 가사의 일부를 가져온 것이다. 이 가사를 출력하기 위한 코드를 작성하게 되면 다음과 같이 작성할 수 있다.

print('''
준비하시고 (Go) 쏘세요 (Oh)
That that I like that (Like that)
기분 좋아 Babe (Babe)
흔들어 좌 우 위 아래로 (Sing it)
One two three to the four (Sing it)
That that I like that
That that I like that babe
That that I like that
It's like that that yo
That that I like that
That that I like that babe
That that I like that
It's like that''')
print("준비하시고 (Go) 쏘세요 (Oh)")
print("That that I like that (Like that)")
print("기분 좋아 Babe (Babe)")
print("흔들어 좌 우 위 아래로 (Sing it)")
print("One two three to the four (Sing it)")
print("That that I like that")
print("That that I like that babe")
print("That that I like that")
print("It's like that that yo")
print("That that I like that")
print("That that I like that babe")
print("That that I like that")
print("It's like that")
print("준비하시고 (Go) 쏘세요 (Oh)")
print("That that I like that (Like that)")
print("기분 좋아 Babe (Babe)")
print("흔들어 좌 우 위 아래로 (Sing it)")
print("One two three to the four (Sing it)")
print("That that I like that")
print("That that I like that babe")
print("That that I like that")
print("It's like that that yo")
print("That that I like ",end="that")
print("That that I like that babe")
print("That that I like that")
print("It's like that")

이런식으로 다양한 방법으로 출력을 해볼 수 있다. 방법은 여러가지이므로 이 정도만 하기로 했다

profile
떠오르는 태양

0개의 댓글