본문 바로가기

분류 전체보기414

Core Qt modules QtCore, which contains low-level data wrapper classes, utility functions, and non-GUI core functionality QtGui, which contains GUI-specific data wrapper classes and utilities QtWidgets, which defines GUI widgets, layouts, and other high-level GUI components 2023. 2. 24.
PyQt5 참조 Qt for Python : https://doc.qt.io/qtforpython/index.html# Qt for Python Packages, installation, and details. doc.qt.io PyQt5 manual : https://www.riverbankcomputing.com/static/Docs/PyQt5/# PyQt5 Reference Guide — PyQt Documentation v5.15.4 www.riverbankcomputing.com Qt module list : https://doc.qt.io/qt-5/qtmodules.html QApplication : https://doc.qt.io/qt-5/qapplication.html#QApplication QWidget.. 2023. 2. 24.
Installing Qt Designer 주요 배포판에서 Qt Designer를 설치할 패키지를 보여줍니다. Distribution Package name Ubuntu, Debian, Mint qttools5-dev-tools Fedora, CentOS, Red Hat, SUSE qt-creator Arch, Manjaro, Antergos qt5-tools 2023. 2. 24.
3. High-Speed Scientific Computing UsingNumPy • Introduction to NumPy • Creating NumPy n-dimensional arrays (ndarrays) • Data types used with NumPy arrays • Indexing of ndarrays • Basic ndarray operations • File operations on ndarrays 2023. 2. 14.
2. Exploratory Data Analysis in Python Steps in EDA Here is a list of steps involved in EDA : • Loading the necessary libraries and setting them up • Data collection • Data wrangling/munging • Data cleaning • Obtaining descriptive statistics • Visual inspection of the data • Data cleaning • Advanced visualization techniques %matplotlib inline ! pip install mpld3 import numpy as np import pandas as pd from scipy import stats import se.. 2023. 2. 13.
1. 개요 2023. 2. 13.
[Python] type hint 1. 내장함수 type 이용 >>> a_string_variable = "Hello, world!" >>> type(a_string_variable) >>> a_string_variable = 42 >>> type(a_string_variable) 2. mypy 패키지 사용( Third-partylibraries ) 1) 설치 ( 명령 프롬프트 이용 ) - 기본 방법 : python -m pip install mypy - conda tool 이용 방법 : conda install mypy # anaconda등을 설치하면 프로그램 목록에서 명령프롬프트가 동시에 설치 됨을 확인할 수 있다. 2) 파일 준비 - 파일 저장 위치 : C:\Users\User01\source\repos\oop_test\main.p.. 2022. 10. 24.
library sys pickle os shutil glob tempfile time calendar random webbrowser 2022. 10. 23.
내장함수 1. 숫자형 자료형 관련 abs(x) : 숫자의 절댓값 반환 >>> abs(12.5) # 12.5 >>> abs(-3.11) # 3.11 divmod( a, b ) : a를 b로 나눈 몫과 나머지를 튜플 형태로 반환 >>> divmod(12,7) # (1, 5) round(number[, ndigits]) : 숫자를 입력받아 반올림해 주는 함수 >>> round(4.6) # 5 >>> round(4.2) # 4 >>> round(5.678, 2) # 5.68 pow(x, y) : x의 y 제곱한 결괏값을 반환 >>> pow(2, 4) 16 >>> pow(3, 3) 27 2. 자료형 변환 str / list / tuple / set int : 문자열 형태의 숫자나 소수점이 있는 숫자 등을 정수 형태로 돌려.. 2022. 10. 23.