PYTHON 100 BOOTCAMP(5)
-
BOOTCAMP 5일차
For Loops, Range and Code Blocks For Loop for문 반복문 for item in list_items: #do something to each item list와 결합해 사용가능 #For Loop with Lists fruits = ["Apple", "Peach", "Pear"] for fruit in fruits: print(fruit) #for반복문 내부에 있다 print(fruit + " Pie") print(fruits) #결과 Apple Apple Pie Peach Peach Pie Pear Pear Pie ['Apple', 'Peach', 'Pear'] ※들여쓰기 매우 중요※ 실습1 - Average heights 키 리스트로부터 평균 학생 신장을 계산 # my ..
2022.06.21 -
BOOTCAMP 4일차
Randomisation 랜덤화, 무작위성 ask python - random module 실습1 - int generator import random #랜덤모듈 임포트 random-integer = random.randint(1,10) #1에서 10사이 숫자에서 print(random_integer) #부동소수점 난수생성기 random_float = random.random() #0과 1 사이 부동소수점 출력 print(random_float) # random_float * 5 #5는 포함 안됨 Module 복잡한 것을 개발하기 위해 코드가 길어지는 경우, 코드가 너무 방대해 어떤 것이 진행되고 있는지 이해하기 힘듬 코드를 개별 모듈로 나눠 개발 각 모듈은 프로그램에서 서로 다른 기능을 담당 특정 기능..
2022.06.18 -
BOOTCAMP 3일차
0611 오늘의 목표 conditional statements logical operators code blocks scope Conditional if / else 특정 조건에 따라 a 또는 b 둘 중 하나 수행 if condition: #우리가 판단할 조건 do this #들여쓰기, 조건 충족 시 수행되는 코드 else: # if 조건 미충족시 수행되는 코드 do this ◎ Draw.io = 어떤 종류의 순서도나 다이어그램도 만들 수 있는 사이트 실습1 - 롤러코스터1 키 120cm 이상만 탑승가능 print("Welcome to the rollercoaster!") height = int(input("What is your height in cm? ")) if height >= 120: print..
2022.06.14 -
BOOTCAMP 2일차
Data type string - 문자열 integer - 정수형 float - 실수형, 부동 소수점 형식 boolean - True / False만 존재 Subscript 문자열에서 특정 요소 추출하는 방법 # H가 출력됨 print("Hello"[0]) #매우 큰 숫자를 읽기 편하게 표현 print(123_456_789) # 123456789로 출력됨 Data type 변경 #정수형에 문자열 형식을 추가하는 것은 불가능 -> Type error num_char = len(input(“what is your name?”)) print(“Your name has “ + num_char + “ characters.”) num_char = len(input(“what is your name?”)) # 정수형..
2022.06.11 -
BOOTCAMP 1일차
udemy에 있는 PYTHON 100 BOOTCAMP강의를 듣기 시작했다! 6월 8일 결제하고 1일차 강의 듣고 정리본을 기록한다. strings 글자들의 연속적인 집합 - 문자열 큰 따옴표 안에 써야한다 -> syntax error 에러 메세지가 이해 안 될 경우 에러 메세지를 복사해 스택오버플로우 검색 print("What to print") String concatenation 문자열 결합 문자열과 문자열 연결 = + 이용 공백을 원하면 넣어줘야한다 print("Hello" + " jiwoo") print("Hello"+ " " + "jiwoo") 파이썬에서 들여쓰기 매우 중요!! indentation error - 들여쓰기 오류 에러를 줄이고 싶다면 텍스트편집기 이용한다 에러가 여러개 인 경우, ..
2022.06.10