예제1 ) import pymysql conn = pymysql.connect(host='127.0.0.1', user='root', password='1234', db='employees', charset='utf8') cur=conn.cursor() cur.execute("select * from titles where emp_no = 10160 ") print("emp_no title from_date to_date") print("===============================================================") while(True): row=cur.fetchone() # print(type(row)) if row == None : break data1 = row..