5. 리스트에 있는 색을 사용하여 무작위 다각형 출력
import turtle
import random
t = turtle.Turtle()
s = turtle.Screen()
def draw_shape(t, c, length, sides, x, y):
t.up()
t.goto(x, y)
t.down()
t.fillcolor(c)
angle = 360.0 / sides
t.begin_fill()
for dist in range(sides):
t.forward(length)
t.left(angle)
t.end_fill()
for i in range(10):
color = random.choice([ 'white', 'yellow', 'blue', 'skyblue', 'orange', 'green' ])
side_length = random.randint(10, 100)
sides = random.randint(3, 10)
x = random.randint(-200, 200)
y = random.randint(-200, 200)
draw_shape(t, color, side_length, sides, x, y)
7. 딕셔너리에 저장된 도메인 출력
domains = { "kr": "대한민국", "us": "미국","jp": "일본", "de": "독일", "sk": "슬로바키아", "hu": "헝가리", "no": "노르웨이" }
for k, v in domains.items():
print (k, ": ", v)
'Programing > Python' 카테고리의 다른 글
Python :: 유클리드 알고리즘 #GCD(최대공약수) 구하기 (0) | 2018.04.01 |
---|---|
Python :: Substitution Cipher Auto decrypt :: 단일 치환 암호 자동 해독 프로그램 (1) | 2018.03.20 |
Python :: 리스트(list)와 딕셔너리(dictionary) - 내용 (0) | 2017.06.12 |
Python :: 함수 - 연습문제 (0) | 2017.06.12 |
Python :: 함수 - 내용 (0) | 2017.06.12 |