๋ก๋ด๊ต์ก/2ํ์ฐจ_ํ์ด์ฌ
[ํฐํ ๊ทธ๋ํฝ] ๊ธ์ ์ฐ๊ธฐ
SSEM๐
2022. 1. 11. 21:13
1. ๊ธ์ ์ฐ๊ธฐ
- write() : ๋ฌธ์์ด์ ํ๋ฉด์ ์ถ๋ ฅํ๋ ๋ช ๋ น
- turtle.write(arg, move=False, align ="left", font=("Arial", 8, "normal")
- arg : TurtleScreen์ ์ธ ๊ธ์
- move : ์ด๋ (True / False), ์๋ต ๊ฐ๋ฅ
- align : ์ ๋ ฌ "left", "center", "right", ์๋ต ๊ฐ๋ฅ
- font : ํฐํธ (fontname, fontsize, fonttype)
์์ ์์ค(27-write.py) | |
import turtle as t t.hideturtle() t.write("์๋ ํ์ด์ฌ", move=False, align="center", font=("arial",50,"bold")) t.penup() t.sety(-100) t.pendown() t.write("Hello Python", move=False, align="center", font=("Freestyle Script",50,"normal")) |
์ค์ต1) ๋ด ์ด๋ฆ์ ์จ ๋ณด์ธ์.