본문 바로가기

전체 글

(91)
SQL 1주차 selct * from table SELECT order_id ord_no, price "가격", quantity "수량" from food_orders fo  select name "이름",  email "e-mail" from customers c SELECT restaurant_name '식당명', customer_id '고객번호' FROM food_orders fo where food_preparation_time between 20 and 30 and cuisine_type ='Korean'
파이썬 문법 기초 1주차 Quiz # Quiz1 sparta에서 spa만 출력해보기Quiz1='sparta' result=Quiz1[:3] print(result)  #Quiz2 전화번호의 지역번호 출력하기phone='02-123-1234' result=phone.split('-')[0] print(result)  #Quiz3  smith의 science 점수를 출력해보세요people = [     {'name': 'bob', 'age': 20, 'score':{'math':90,'science':70}},     {'name': 'carry', 'age': 38, 'score':{'math':40,'science':72}},     {'name': 'smith', 'age': 28, 'score':{'math':80,'science':..
파이썬을 왜 쓸까? 기존 프로그램의 경우 기계언어적 특징을 가지고 있으나 파이썬은 인간다운 언어와의 유상성을기반으로 쉬운 문법과 가독성을 보유하고 있음. 사용자는 데이터 타입을 지정할 필요 없이 변수 선언을 통해 원활한 프로그래밍을 가능하게 해줌 또한, 개발 및 데이터분석, AI, 자동화 등에서 활용하는 범용적인 활용성을 가지고 있음 최대 장점으로는 무료 소스로 모두에게 공개된 언어라는 점이 파이썬을 사용하고 있음    직접 쳐본 파이썬 문장들print("hi")integer=100print(type(integer))float=3.14print(type(float))print(integer)print(float)x=2y=4print(x+y)print(x-y)print(x*y)print(x/y)print(x**y)print(..