일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 응시료
- teen learn
- 시험 일정
- pythonML
- separating data(데이터 분리하기)
- matplotlib
- numpy
- 준비
- List Comprehension
- Seaborn
- K 데이터 자격시험
- context manger1
- 검정수수료
- 빅데이터 분석기사
Archives
- Today
- Total
재원's 블로그
python turtle(파이썬 터틀 모듈) 이용해 사각형 그리기 본문
최초 작성일 : 2021-11-25
Python에 있는 'turtle'모듈을 사용해서
사각형을 그려보았다.
코드는 아래와 같다.
```python
import turtle as t
t.shape('turtle')
t.forward(100)
t.right(9
t.forward(100)
t.right(90)
t.forward(100)
t.right(90)
t.forward(100)
```

'Python' 카테고리의 다른 글
class (2) | 2023.01.21 |
---|---|
list comprehension (0) | 2023.01.20 |
matplotlib,seaborn 시각화 들어가기 (0) | 2023.01.20 |
파이썬 기초문법 (0) | 2023.01.20 |
Python Virtual Environments(파이썬 가상환경) (0) | 2023.01.20 |