Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Import
- 참고블로그
- db
- https://youtube.com/playlist?list=PLuHgQVnccGMA5836CvWfieEQy0T0ov6Jh&si=FTaYv8m21EhO-A2K
- execCommand
- eport
- database
- Porject
- https://m.blog.naver.com/tt2t2am1118/221010125300
- mysql
- 게임
- prj
- await
- object
- Project
- setTimeout()
- 혼프
- sql
- async
- addEventListener
- JS #프로젝트
- js
- promise
- slow and steady
- ajax
- 비동기
- webpack
- callback
- 동기
- json
Archives
- Today
- Total
C-log
👩🏫class : 2week 본문
728x90
test import turtle package
import turtle
t = turtle.Turtle()
t.color("blue")
t.goto(100,50)
t.circle(50)
print to variable
#variable print
a = "Python"
b = 10
print(a)
print(b)
data type
#data type
print("data type")
print(7+7)
print('7'+"7")
#str -> array
print("\nstr -> array")
msg = "Hello Python"
print(msg[0])
print(msg[6:8])
print(msg[11]) #n
print(msg[-1]) #n
print(msg[2:5]) #llo
728x90
'📘Python > 👩🏫class' 카테고리의 다른 글
👩🏫class : 7week (0) | 2023.10.16 |
---|---|
👩🏫class : 5week (0) | 2023.09.26 |
👩🏫class : 4week (0) | 2023.09.19 |
👩🏫class : 3week (0) | 2023.09.12 |
👩🏫class : 1week (0) | 2023.09.05 |
Comments