728x90
반응형
9.
start = int(input("시작값 ==> "))
end = int(input("끝값 ==> "))
inc = int(input("증가값 ==> "))
sum = 0
for i in range(start, end, inc) :
sum += i
print(start,"에서", end,"까지 ", inc,"씩 증가한 값의 합 : ", sum)
10.
import turtle
import random
colors = ['red','green','magenta','blue','black']
turtle.shape('turtle')
turtle.pensize(2)
distance = 0
cnt = 0
while True :
distance += 10
if cnt == 50 :
break
else :
cnt += 1
turtle.forward(distance)
turtle.color(random.choice(colors))
turtle.left(90)
continue
turtle.done()
728x90
반응형
'Study > Python' 카테고리의 다른 글
Chapter 08 난생처음 파이썬 프로그래밍 함수를 이용한 고급 프로그래밍 연습문제 (0) | 2021.10.04 |
---|---|
Chapter 07 난생처음 파이썬 프로그래밍 리스트, 튜플, 딕셔너리 연습문제 (1) | 2021.10.02 |
Chapter 05 난생처음 파이썬 프로그래밍 조건문 연습문제 (2) | 2021.09.26 |
Chapter 04 난생처음 파이썬 프로그래밍 데이터형과 문자열 연습문제 (6) | 2021.09.23 |
Chapter 03 난생처음 파이썬 프로그래밍 연산자 연습문제 (16) | 2021.09.21 |