목록프로그래밍 (2)
차밍이
event 솔리디티는 print가 없음 대신 event를 사용해서 확인할 수 있음 contract testContract { event info(string name, uint256 money); function sendMoney() public { // 블록에 작성하면 언제든 꺼내서 확인할 수 있음 emit info("BakChan", 10000); } } indexced 특정 index의 event 만 가져오기 위해서는 index가 필요함 그럴 땐 indexed를 사용해 주어야 함 contract testContract{ event numberTracker(uint256 num, string str); event numberTracker2(uint indexced num, string str); ui..
목차 1. PyInstaller 설치하기 다른 라이브러리들을 설치하는 것과 동일하게 pip 명령어를 활용해서 pyinstaller를 설치해 줍니다. pip install pyinstaller 2. PyInstaller 사용방법 # Options pyinstaller [-h] [-v] [-D] [-F] [--specpath DIR] [-n NAME] # 일반적인 사용 pyinstaller {파이썬 파일 - 경로포함} # 콘솔창 보이지 않도록 설정하기 / 셋 다 동일 pyinstaller {파이썬 파일} -w pyinstaller {파이썬 파일} --windowed pyinstaller {파이썬 파일} --noconsole # 단일 파일로 만들기 / 무조건 쓰기 아니면 지저분함 pyinstaller {파이썬..