아래의 코드를 실행하면 로또번호 6개를 추출해준다. import random lottery_numbers = random.sample(range(1, 46), 6) print(lottery_numbers) 실행시 결과 화면, 1개만 추출하면 너무 아쉬워서 10개 추출을 시켜보자면... import random for i in range(10): lottery_numbers = random.sample(range(1, 46), 6) print(lottery_numbers) 위 코드를 실행하면 다음과 같이 10개의 리스트가 출력된다. 이것을 조금 업그레이드 해서 GUI (graphical user interface) 모드로 만들고 싶다면, import random import tkinter as tk def..
2023.2.2. 이제 되는 것 같다. 나의 경우 Visual Code 를 사용하는데, 비쥬얼 스튜디오 코드에서 파이썬을 적용시킬 때 인터프리터를 연결해줘야한다... [해결방법] (Ctrl) + (Shift) + (P)를 누른 후 (Python 인터프리터 선택 하기) pip install wheel DEPRECATION: pefile is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible repla..
파이썬 코드로 EXE 실행 파일을 만드는 방법은 몇 가지가 있지만, pyinstaller 패키지를 사용하는 방법이 많이 쓰인다. pyinstaller를 사용하여 실행 파일을 만드는 일반적인 단계는 다음과 같습니다. 먼저 pyinstaller 모듈이 필요하다. 파이썬 명령 프롬프트나 터미널에서 다음 명령을 실행하여 pyinstaller 패키지를 설치하기 위해서 아래 명령어를 실행한다. > pip install pyinstaller pyinstaller가 설치되면, exe 파일을 만들기 위한 준비는 다 되었다. 다음 명령을 이용하면 EXE파일을 만들 수 있다. pyinstaller --onefile 실행파일을_만들_파이썬_파일이름.py 이 명령은 스크립트가 있는 같은 디렉토리에 있는 dist 디렉토리에 단일..
When you use the command pip install in VSCode, it is trying to download and install a specific Python library or package. When you see the message "Getting requirements to build wheel", it means that pip is trying to gather all the necessary information and dependencies that are required to build a "wheel" package of the library you're trying to install. A "wheel" is a pre-compiled package of a..
ModuleNotFoundError: No module named 'selenium' 해결방법 1. selenium 드라이버 위치를 못 찾는 것입니다. 해당 디렉토리에 chromedriver.exe 파일이 있는지 확장자까지 정확하게 확인하신 후에, 해당 파일을 지정해주시면 된다. 하지만 정확한 경로인데도 안되는 경우, 우선 시스템 고급설정에서 환경변수 path에 pip.exe 파일이 있는 경로를 추가 시켜줘야 한다. 해결방법2 https://msgoel.tistory.com/entry/%ED%8C%8C%EC%9D%B4%EC%8D%AC-%EC%85%80%EB%A0%88%EB%8B%88%EC%9B%80-%EC%98%A4%EB%A5%98-ModuleNotFoundError-No-module-named-sele..