반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 |
Tags
- 파이썬 네이버 로그인
- pywinauto 윈도우
- 파이썬 가상환경 설치
- selenium
- 파이썬네이버부동산
- Python
- 날짜 정규식
- 네이버커머스API
- 가상환경설치
- vscode venv 설치
- uipath 입문
- pywinauto 윈도우제어
- Element is not clickable at point
- pycdas.exe
- 네이버부동산크롤링
- Uipath 기초
- 네이버매물크롤링
- 커머스API
- 파이썬 환경설정
- 네이버 로그인 캡챠해결
- UiPath
- Selenium 셀렉터잡기
- Uipath 설치방법
- pywinauto
- venv 설치
- 네이버 로그인 영수증 해결
- pycdc.exe
- 파이썬 가상환경 설치방법
- 왕초보 파이썬 실행
- 네이버 로그인 하기
Archives
- Today
- Total
목록2024/02/08 (1)
콘솔워크

현재년도를 기준으로 과거 5년, 미래 5년에 대한 10개 콤보박스를 구현해보았다. self.year_select_combobox = QComboBox() current_year = datetime.now().year past_years = [str(current_year - i) for i in range(5, 0, -1)] future_years = [str(current_year + i) for i in range(1, 6)] year_list = past_years + [str(current_year)] + future_years self.year_select_combobox.addItems(year_list) self.year_select_combobox.setCurrentText(str(date..
프로그래밍/python
2024. 2. 8. 09:41