본문 바로가기
IT/프로그래밍

두근두근 파이썬 연습문제 4장

by nutrient 2020. 12. 1.
728x90
728x170

두근두근 파이썬 연습문제 4장

 

1번

print("나는 "+ str(12)+ "개의 사과를 먹었다.")

 

2번

'applegrape'

'appleappleapple'

 

3번


x = input("문자열을 입력하시오 : ")

print(x[0:2] + x[-2:])

 

4번

x = input("문자열을 입력하시오 : ")

print(x + "하는 중")

 

5번

x = input("기호를 입력하시오 : ")
middle = input("중간에 삽입할 문자열을 입력하시오 : ")

print(x[0] + middle + x[1])

 

6번

user = [1, 2, 3, 4]
sum = user[0] + user[1] + user[2] + user[3]

print("리스트 = ", user)
print("리스트 숫자들의 합 = ", sum)

 

7번

import turtle
t = turtle.Turtle()
t.shape("turtle")

color = [ ]

color1 = input("색상 #1을 입력하시오 : ")
color.append(color1)
color2 = input("색상 #2을 입력하시오 : ")
color.append(color2)
color3 = input("색상 #3을 입력하시오 : ")
color.append(color3)

t.fillcolor(color[2])
t.begin_fill()
t.circle(50)
t.end_fill()
t.penup()
t.goto(100,0)
t.pendown()

t.fillcolor(color[1])
t.begin_fill()
t.circle(50)
t.end_fill()
t.penup()
t.goto(200,0)
t.pendown()

t.fillcolor(color[0])
t.begin_fill()
t.circle(50)
t.end_fill()

 

8번


import turtle
t = turtle.Turtle()
t.shape("turtle")

x_list = [ ]
y_list = [ ]

x1 = int(input("x1 : "))
x_list.append(x1)
y1 = int(input("y1 : "))
y_list.append(y1)

x2 = int(input("x2 : "))
x_list.append(x2)
y2 = int(input("y2 : "))
y_list.append(y2)

x3 = int(input("x3 : "))
x_list.append(x3)
y3 = int(input("y3 : "))
y_list.append(y3)

t.goto(x_list[0], y_list[0])
t.goto(x_list[1], y_list[1])
t.goto(x_list[2], y_list[2])
 
728x90
그리드형

댓글