-
[ํฐํ ๊ทธ๋ํฝ] ๊ธ์ ์ฐ๊ธฐ๋ก๋ด๊ต์ก/2ํ์ฐจ_ํ์ด์ฌ 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) ๋ด ์ด๋ฆ์ ์จ ๋ณด์ธ์.
'๋ก๋ด๊ต์ก > 2ํ์ฐจ_ํ์ด์ฌ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ํฐํ ๊ทธ๋ํฝ] ํฐํ๋ฐ (0) 2022.01.11 [ํฐํ ๊ทธ๋ํฝ] ์ด๋ฒคํธ์ ํจ์ (0) 2022.01.11 [ํฐํ ๊ทธ๋ํฝ] ๊ธฐ๋ณธ ํจ์ (0) 2022.01.11 [ํฐํ ๊ทธ๋ํฝ] ์ค๋ฅ๊ธฐ ๊ทธ๋ฆฌ๊ธฐ (0) 2021.06.24 [2ํ์ฐจ-5] ํจ์ (0) 2020.08.21