# plotting을 위한 패키지 임포트import matplotlib.pyplot as plt # 친구 수friends = [70, 65, 72, 63, 71, 64, 60, 64, 67]minutes = [175, 170, 205, 120, 220, 130, 105, 145, 190] plt.scatter(friends, minutes)plt.title('Minutes vs Friends')plt.xlabel('# of Friends')plt.ylabel('average time(minutes)')plt.show() friends = [70, 65, 72, 63, 71, 64, 60, 64, 67]minutes = [175, 170, 205, 120, 220, 130, 105, 145, 190]lab..
Python
"""oracle_config.pyOracle 데이터베이스 서버에 접속(로그인)하기 위해 필요한 정보들을 정의""" # 사용자 이름 user = 'scott' # 비밀번호 pwd = 'tiger' # 데이터베이스 서버 주소: DSN(Data Source Name) dsn = 'localhost:1521/orcl' >>Oracle 데이터베이스 서버에서 select 구문 실행, 결과 확인현재 프로젝트 디렉토리 상태 for 변수 in 커서: 실행문for-in 구문에서 cursor.fetchone()의 결과를 변수에 전달 import cx_Oracleimport lec08_database.oracle_config as cfg # connection 설정connection = cx_Oracle.connect(cf..
패키지 준비File - Settings - Project - Project Interpreter - + 모양 클릭 후 - cx-Oracle 검색 - 설치 cmd창으로 설치cmd 실행 - pip install cx-Oracle Oracle SQL Developer -> 접속 -> + 표시 클릭 -> 정보 확인 파일 생성 """oracle_config.pyOracle 데이터베이스 서버에 접속(로그인)하기 위해 필요한 정보들을 정의""" # 사용자 이름 user = 'scott' # 비밀번호 pwd = 'tiger' # 데이터베이스 서버 주소: DSN(Data Source Name) dsn = 'localhost:1521/orcl' >>Oracle 데이터베이스 서버에서 select 구문 실행, 결과 확인현재 ..
window -> cmdC:\Users\user>pip listPackage Version------------------ -------attrs 19.3.0backcall 0.1.0bleach 3.1.0colorama 0.4.1cycler 0.10.0decorator 4.4.1defusedxml 0.6.0entrypoints 0.3importlib-metadata 0.23ipykernel 5.1.3ipython 7.9.0ipython-genutils 0.2.0ipywidgets 7.5.1jedi 0.15.1Jinja2 2.10.3jsonschema 3.1.1jupyter 1.0.0jupyter-client 5.3.4jupyter-console 6.0.0jupyter-core 4.6.1kiwisolver..