행위

파이썬 입문

DB CAFE

Dbcafe (토론 | 기여)님의 2020년 4월 10일 (금) 09:57 판 (변수)
thumb_up 추천메뉴 바로가기


1 기본 문법[편집]

2 데이터 타입[편집]

# int 
>>> a = 3
>>> type(a)
int
  1. float
  2. str
  3. bool
  4. complex
>>> c = 3 + 4j
>>> type(c)
complex

3 문자열 조작 함수[편집]

3.1 len(s)[편집]

>>> mystring = “hello world”
>>> len(mystring)
11

3.2 indexing[편집]

>>> mystring[0]
‘h’

3.3 slicing[편집]

>>> mystring[0:5]
‘hello’

>>> mystring[6:]
‘world’

3.4 문자열.split(S)[편집]

>>> companies = “yahoo google”

>>> companies.split(‘ ’)
[‘yahoo’, ‘google’]

3.5 in[편집]

>>> ‘google’ in companies
True

3.6 combining[편집]

>>> s1 = “hello”
>>> s2 = “world”
>>> s3 = s1 + ‘ ’ + s2
>>> s3
“hello world”

3.7 replace[편집]

>>> a = “yahoo;google”
>>> new_a = a.replace(‘;’, ‘-’)
>>> new_a
“yahoo-google”

3.8 index[편집]

>>> s = “yahoo google”
>>> s.index(“google”)
6

3.9 문자열.find(x)[편집]

>>> s = “yahoo google”

>>> s.find(“google”)
6

3.10 stripping[편집]

>>> a = “  yahoo  ”
>>> new_a = a.strip()
>>> new_a
“yahoo”

4 파이썬 제어문[편집]

파이썬 기본 제어문.png

5 파이썬 모듈 임포트 방법[편집]

    1. import os
  : 일반적인 import  방식  
    1. from os import xxx
  : xxx 함수만 import 하는 방식
    1. from os import *
  : 모든 함수를 import 하는 방식

6 변수[편집]

https://drive.google.com/file/d/19QerDTdnDPaoVXjOAGYHyDnCnLx1UUUf/view?usp=drivesdk

>>> a = 10
>>> id(a)