목록코딩공부/Python (4)
슈코딩
https://peps.python.org/pep-0008/ PEP 8 – Style Guide for Python Code | peps.python.org PEP 8 – Style Guide for Python Code Author: Guido van Rossum , Barry Warsaw , Nick Coghlan Status: Active Type: Process Created: 05-Jul-2001 Post-History: 05-Jul-2001, 01-Aug-2013 Table of Contents This document gives coding conventions for the Python co peps.python.org PEP8 은 파이썬에서 사용하는 코드 컨벤션이다. 코드를 어떻게 구상할..
1. Python 문법 복습 학습 1) 문자열 다루기 int() : 문자열을 정수로 변환 str() : 숫자를 문자열로 변환 string 약자 len() : 문자열의 길이 측정 text = 'abcdefghik' result = text[:3] #텍스트의 3번째까지 자르기 result = text[3:] #텍스트의 3번째이후부터 자르기 result = text[3:8] #텍스트의 3번째이후부터 8번째까지 자르기 2) 리스트 a_list = [1,5,6,3,2,4] a_list .sort() #정렬 a_list.sort(reverse=True) #내림차순 정렬 result = (99 in a_list) # a_list 안에 99가 있는지 없는지 판단 #있으면 True 없으면 False 3) 딕셔너리 a_d..
1.Python -파이썬 문법은 Javascript보다 훨씬 더 직관적이다. -문법 : 변수 / 자료형 / 함수 / 조건문 / 반복문 #변수 a=2 b=3 print(a+b) 하면 5가 출력된다. #자료형 a_list = ['사과', '배', '감'] ->list 형태 추가 할때는 .append를 사용한다. a_dict = {'name' : 'bob', 'age' : 27 } -> 딕셔너리 형태 #함수 *파이썬은 들여쓰기에 따라 내용물인지 아닌지가 결정된다* def sum(a,b) return a+b result = sum(1,2) print(result) 결과는 3이 나온다. #조건문 def is_adult(age): if age > 20: print('성인입니다') else: print('청소년입니다..
1. 강의영상 링크 (265) (파이썬 기초 활용편 7) GUI 계산기 만들기 강의 #tkinter - YouTube 2. 완성 코드 import tkinter as tk disValue = 0 operator = {'+':1, '-':2, '/':3, '*':4, 'C':5, '=':6} stoValue = 0 opPre = 0 def number_click(value): # print('숫자',value) global disValue disValue = (disValue*10) + value str_value.set(disValue) def clear(): global disValue, stoValue, opPre stoValue = 0 opPre = 0 disValue = 0 str_value.se..