import xlrd
import pyautogui
wb = xlrd.open_workbook('calendar.xlsx')
sheets = wb.sheets()
cv_1 = sheets[0].cell_value(0,0)
cv_2 = sheets[0].cell_value(1,0)
sun = [1, 15, 29, 43, 57]
sat = [13, 27, 41, 55, 69]
holy = sun + sat
for i in range(1,70, 2):
if i in holy:
d = str('cv_') + str(i)
d_1 = str('cv_') + str(i+1)
print(d, d_1)
코딩을 근본없이 시작해서..ㅠㅠ 갑자기 막혀 질문드립니다.
엑셀파일에 있는 좌표값을 읽어서 마우스를 컨트롤하려고 하는데요..
d 값에 cv_1을 넣으면 엑셀파일에 입력된 좌표값(123,123)을 출력해주는 줄알았는데
그냥 "cv_1 , cv_2" 이렇게만 출력되네요 ㅠㅠㅠ
좌표값을 출력할 방법이 있을까요?