일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- db
- json
- ajax
- database
- prj
- execCommand
- 비동기
- 게임
- callback
- mysql
- js
- 혼프
- addEventListener
- async
- setTimeout()
- object
- https://m.blog.naver.com/tt2t2am1118/221010125300
- 참고블로그
- Project
- Porject
- webpack
- Import
- sql
- await
- eport
- https://youtube.com/playlist?list=PLuHgQVnccGMA5836CvWfieEQy0T0ov6Jh&si=FTaYv8m21EhO-A2K
- 동기
- promise
- JS #프로젝트
- slow and steady
- Today
- Total
목록📘Python/👩🏫class (13)
C-log
[Python] : 위젯의 배치와 크기 조절 위젯의 배치와 크기 조절 - 윈도우 창에 위젯을 여러 개 표시할 때 그 배치를 잘 고려해 화면을 효과적으로 표현할 수 있습니다. - pack() 이나 place() 함수를 사용해 위젯을 화면에 출력합니다. - 기 ohju.tistory.com padx와 pady -> padx와 pady를 활용해서 버튼 응답 만들기 from tkinter import * root = Tk() root.title("위젯배치") btn1 = Button(root, text ="버튼배치1") #command를 추가해볼 btn2 = Button(root, text ="버튼배치2") #이미지로 변환 해보기 btn3 = Button(root, text ="버튼배치3") btn1.pack(..
continue 이용하기 for n in range(1,6) : if n == 4 : #4를 제외하고(즉,파싱할 때 continue로 인해서 아래 print를 생략) 출 continue print(n, end=' ') #1 2 3 5 print('The End') for n in range(1,21): if n%3 == 0 : continue print(n,end=' ') #1 2 4 5 7 8 10 11 13 14 16 17 19 20 이중 함수를 사용한 3의 배수 만들기 def threeMultiple(n): if(n % 3 == 0) : return True #boolen으로 값을 반환 else: return False #three = threeMultiple(4) #print(three) def ..
13주차에선 for문을 주로 다루었지만 아주 기본적이기 때문에 바로 응용부터 글을 작성할 것이다. for문으로 다양한 각도의 원형 그리기 import turtle t = turtle.Turtle() t.speed(8) radius=100 for n in range(1,7) : t.circle(radius) #원형을 그리는 값이다. t.left(360/n) #화살표의 회전을 정하는 값이다. for문으로 여러 각도 그리기 import turtle t = turtle.Turtle() #원형 그리 t.circle(50) t.goto(100,0) #삼각형 그리 for n in range(3): t.forward(100) t.left(120) 입력한 값의 도형 그리기 import turtle t=turtle.Tur..
12주차에선 if문을 주로 다루었지만 아주 기본적이기 때문에 바로 응용부터 글을 작성할 것이다. img와 entry를 이용한 if문 from tkinter import * root = Tk() root.title("윈도우 창 만들기") #geometry는 윈도우 창 크기를 결정 짓는 명령어이다. root.geometry("230x120") def pass_check(): score = int(ent.get()) if score >= 70: #lbl_status.configure(text = "합격") lbl_status.configure(text = "합격") lbl_img = Label(root, text = "합격")#image = photo1 lbl_img.place(x=100, y=30) else..
dictionary 딕셔녀리는 key와 value로 이루어져 있다. 아래 예시로 확인해보자. 구성방식은 여러가지가 있다. 아래는 배열에 직접적으로 넣는 방법이다. #중괄호 #key : value로 이루어져 있다. #딕셔너리 쌍 추가 customer = {} customer['name'] = '김사랑' customer['job'] = '회사원' customer['phone'] = '010-0000-1111' print(customer) #딕셔너리 요소 제 customer = {} customer['name'] = '김사랑' customer['job'] = '회사원' customer['phone'] = '010-0000-1111' print("원본 ==>",customer) del customer['job'..
#root 만들기 from tkinter import * root = Tk() root.title("커피 주문받기") root.geometry("580x350") #금액 계산하는 함수 def Order(): Coffee1_Tprice = coffee_price[0] * int(ent_Coffee1_num.get()) Coffee2_Tprice = coffee_price[1] * int(ent_Coffee2_num.get()) Coffee3_Tprice = coffee_price[2] * int(ent_Coffee3_num.get()) Cooki_Tprice = coffee_price[3] * int(ent_Cooki_num.get()) #총금액 계산 Total_price = Coffee1_Tprice +..
list a =[3,6,9,12,15,18,21,27] print(a[:3]) #[3, 6, 9] print(a[3:]) #[12, 15, 18, 21, 27] print(a[:]) #[3, 6, 9, 12, 15, 18, 21, 27] b = "my name" print(b[1]) #y add #add b = [3,6,9,13,15,18,21,27] b[3] = 12 print(b) #[3, 6, 9, 12, 15, 18, 21, 27] insert #append future = [] future.append("AI") future.append("빅데이터") future.append("자율주행") future.append("사물인터넷") print("미리 기술 핵심분야") #sep역할 print(fut..
이번 시간에는 연산자에 대해서 배워 볼 것이다. 아주 기초적이기 때문에 어려움 없이 따라 올 수 있을 것이다. 연산자 #연산자 a = 7 b = 5 print(a+b, a-b, a*b, a/b) print(a/b,a//b,a%b, a**b) / 나누기 // 몫 % 나눗셈의 나머지 ** 거듭제곱 위의 표를 보고 연산자의 기호를 기억하자. 평균 구하기 위의 표를 보고 평균을 구하는 간다한 코드를 작성했다. 아래 코드를 보고 참고하자. kor = int(input("국어 : ")) eng = int(input("영어 : ")) ave = (kor + eng) / 2 print("평균 : ", ave) 리스트 변수를 여러개 담아 내는 방식이다. 아래 코드로 실습해보자. #리스트 data = [10, 20, 30..