Notice
Recent Comments
Link
Tags
- express install
- node 버전확인
- 파이썬
- 클라우드서버 생성
- 파이썬 반복문
- ubuntu node js install
- Python
- index 생성
- C언어
- 라즈베리파이4
- node js express install
- 디지털오션 클라우드서버 생성하기
- npm버전확인
- 디지털오션 드로플릿
- Node.js express install
- tzselect
- c file read
- java 숫자를 문자로 변환하기
- raspi-config
- 우분투 node js 설치
- Ubuntu timezone
- ubuntu node js
- 우분투 시간설정
- 디지털오션 서버생성하기
- node js 버전확인
- 우분투 시간변경
- mysql index 생성
- c언어 파일 읽기
- 자바 파일 한줄씩 읽기
- 자바 한줄씩 읽기
Archives
- Today
- Total
목록전체 글 (36)
호그래머

1. Python에서 Lists 사용하기 fruits=['apple', 'banana', 'lemon', 'cherry', 'pear', 'grapes'] print(fruits) print(fruits[0]) print(fruits[5]) print(fruits[-2]) print(fruits[2:]) print(fruits[1:3]) 리스트는 0부터 시작 결과 끝 1. Python에서 Lists를 사용할 수 있다. 2. Lists의 시작은 0부터 시작한다.
Python
2023. 6. 27. 23:39

1. Python에서 while문 사용하기 i=1 while i < 10: print(i) i=i+1 print("while 끝!") 결과 끝 1. Python에서 쉽게 while문을 사용할 수 있다.
Python
2023. 6. 27. 23:33