본문 바로가기

Study(매일매일한걸음씩)35

[EXCEL] 드롭 다운 목차 만들기 / 셀 색깔 지정(조건에 따른) 보호되어 있는 글 입니다. 2023. 3. 20.
Mini -Project #2-3 GUI 계산기 만들기(pyside6) - 완료(추가설명) https://github.com/carcase2/Python_Mini_Caculator GitHub - carcase2/Python_Mini_Caculator Contribute to carcase2/Python_Mini_Caculator development by creating an account on GitHub. github.com import sys from PySide6 import QtCore, QtGui from PySide6.QtWidgets import QApplication, QMainWindow, QLineEdit, QPushButton, QHBoxLayout, QVBoxLayout, QWidget, QGridLayout, QLabel from PySide6.QtCore impor.. 2023. 3. 9.
Mini -Project #2-3 GUI 계산기 만들기(pyside6) - 완료 일반적인 기능 완료 추가기능 1. MR,MS,MC, 적용 2. BS(back space) 기능 추가 3. 숫자 display text 크기 증가(알아보기 쉽게) 다음 예정 1. 주석 추가(이해, 분석등 내용 추가) import sys from PySide6 import QtCore, QtGui from PySide6.QtWidgets import QApplication, QMainWindow, QLineEdit, QPushButton, QHBoxLayout, QVBoxLayout, QWidget, QGridLayout, QLabel from PySide6.QtCore import Slot, Qt import re result = '' result_state = False count = 0 MS_numbe.. 2023. 2. 13.
[Study Python] dictionary A dictionary in Python is an unordered collection of key-value pairs, where each key maps to a value. The keys must be unique and immutable (i.e., they cannot be changed), while the values can be of any type and can be changed. Dictionaries are implemented as hash tables, making lookups and updates efficient and fast. They are defined using curly braces {} and each key-value pair is separated by.. 2023. 2. 11.