for-in

"""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..
# 구구단for i in range(2,10): print(i,'단') for j in range(1,10): print(f'{i}*{j}={i*j}') print() 2 단2*1=22*2=42*3=62*4=82*5=102*6=122*7=142*8=162*9=18 3 단3*1=33*2=63*3=93*4=123*5=153*6=183*7=213*8=243*9=27 4 단4*1=44*2=84*3=124*4=164*5=204*6=244*7=284*8=324*9=36 5 단5*1=55*2=105*3=155*4=205*5=255*6=305*7=355*8=405*9=45 6 단6*1=66*2=126*3=186*4=246*5=306*6=366*7=426*8=486*9=54 7 단7*1=77*2=147*3=217*4=2..
Codezoy
'for-in' 태그의 글 목록