728x90 반응형 🐎 언어(Language)/Python11 [Python] 자료형 💡 숫자형 정수형 (Integer) 실수형 (Floating-point) 8진수 (Octal) - 0o 16진수 (Hexadecimal) - 0x 연산자 +, -, *, /, //(몫), %(나머지), **(제곱) 💡 문자열 (String) “문자, 단어 등으로 구성된 문자들의 집합” “””hello world””” ⇒ “hello world” “hello/” world” ⇒ hello” world ‘hello” world’ ⇒ hello” world 문자열 연결 ( hello + world ) 문자열 곱하기( hello * 3 ) 문자열 길이 ( len(aaa) ) 인덱싱 (Indexing) 문자열의 특정값을 뽑아냄 a[13] 슬라이싱 (Slicing) 시작 번호부터 끝 번호까지 문자 추출 a[2:-1.. 2023. 8. 22. [Python] 코딩 규칙 파이썬에서는 표준 코딩 규칙을 제공한다. PEP 8 – Style Guide for Python Code | peps.python.org 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... 2023. 8. 22. 이전 1 2 다음 728x90 반응형