언어/python

python(1)

Eprld 2024. 8. 21. 14:27

리픟릿 회원가입 / 로그인

 

https://replit.com/languages/python3

 

pytjoon선택하고 create

 

main / shell 에서 실행 

shell python(실핼) / ctrl +D 빠져나감 

 

기본 연산자(자바와 비슷함)

 

파이썬 연산자

 

문자열 출력

 

키워드 확인 방법

import keyword
print(keyword.kwlist)  / . 객체(속성, 메서드)  .(정적/속성)

 

사용자 입력값을 받음

ㅡㅁ

반지름 구하기 실습  

 

자료형 확인

 

문자열

인덱스 인덱싱 / 슬라이스

*더하기를 할 떄는 앞에 자료형과 뒤에 자료형이 같이야 함

 

index, append, insertm extend 

 

sort, reverse, pop, remove, count

 

파이썬 문서

https://docs.python.org/3/py-modindex.html

 

Python Module Index — Python 3.12.5 documentation

numbers Numeric abstract base classes (Complex, Real, Integral, etc.).

docs.python.org

 

 

 

'언어 > python' 카테고리의 다른 글

파이썬 다운로드  (1) 2024.10.26
python - 파일 입출력  (0) 2024.08.25
python - class  (0) 2024.08.24
python(3) if, while, for, random  (0) 2024.08.22
python(2) list, tuple, in/not in  (0) 2024.08.21