일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 30 |
- IOS
- ubuntu
- swift
- PyQt5
- 다이어트
- MySQL
- tensorflow
- mssql
- 라즈베리파이
- ASP
- 리눅스
- 맛집
- 유니티
- python
- 날짜
- urllib
- pandas
- Unity
- javascript
- Linux
- GIT
- 함수
- flutter
- MS-SQL
- PyQt
- PER
- port
- sqlite
- node.js
- Excel
목록랭귀지/python (238)
아미(아름다운미소)
QHeaderView의 헤더를 클릭하면 QTableView를 정렬하는 방법입니다. 다음 과 같은 함수를 DataFrame사용하면 올바르게 정렬됩니다. def sort(self, Ncol, order): """Sort table by given column number.""" self.layoutAboutToBeChanged.emit() self.data = self.data.sort_values(self.headers[Ncol], ascending=order == Qt.AscendingOrder) self.layoutChanged.emit()
python 서버 시간 확인하기 response 메시지 헤더에 있는 서버 시간정보 값을 가져옵니다. strptime() : 문자열을 날짜/시간으로 변환 mktime() : 일시를 초 단위 시간으로 변환 #-*- coding: utf-8 -*- import urllib.request import urllib.error import time date = urllib.request.urlopen('http://www.google.com').headers['Date'] print(date) time = int(time.mktime(time.strptime(date, '%a, %d %b %Y %H:%M:%S %Z'))) print(time) Tue, 04 Dec 2018 07:38:24 GMT 1543876704
python PyQt5 현재시간 #-*- coding: utf-8 -*- ''' Created on 2018. 12. 3. @author: bhm ''' from PyQt5.QtCore import QTime current_time = QTime.currentTime() text_time = current_time.toString("hh:mm:ss") time_msg = "현재시간: " + text_time print(time_msg) 현재시간: 13:14:46
현상: 이클립스(eclipse.exe)를 실행했을 때 로딩화면 (혹은 로고) 이 깜빡 하더니 금방 사라지는 현상 메모리(힙 메모리 (Heap memory))를 줄여줍니다. 힙 메모리는 동적으로 할당하는 메모리라고도 할 수 있습니다. 이클립스를 실행하면 기본적으로 잡고가는 메모리가 있는데 이 설정이 eclipse.ini 파일에 저장되어 있습니다. 이 부분을 조정합니다. 1. 이클립스가 설치된 폴더로 이동하여 ini 파일 찾기 이클립스가 설치된 폴더로 이동합니다. 저는 C:\eclipse에 위치하고 있습니다. 경로는 누구나 다를 수 있기 때문에 각자 설치된 이클립스 폴더로 이동하면 된니다. eclipse.ini 파일은 바로 이곳에 루트에 위치하고 있습니다. 2. eclipse.ini 파일에 Xms, Xmx ..
stylesheet를 사용하지 않고 색상을 변경할 수 있습니다. Palette= QtGui.QPalette() Palette.setColor(QtGui.QPalette.Text, QtCore.Qt.red) self.lineEdit.setPalette(Palette)
subprocess 모듈을 이용한 명령어 실행 #-*- coding: utf-8 -*- import subprocess subprocess.Popen('.\folder\program.exe')
PyQt5 , QAction 사용하여 menubar 만들기 #-*- coding: utf-8 -*- ''' Created on 2018. 11. 29. @author: bhm ''' from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication from PyQt5.QtGui import QIcon class Example(QMainWindow): def __init__(self): super().__init__() exit_action = QAction(QIcon('exit.png'), "&Exit", self) # exit_action = QAction('&Exit', self) exit_action.setShortcut('Ctrl+Q') e..
문자열을 입력받아 그 문자열에서 숫자만 제거하고 출력 #-*- coding: utf-8 -*- ''' Created on 2018. 11. 26. @author: bhm ''' import re char = "123abcdefghi4jk56" p = re.compile("[^0-9]") print("".join(p.findall(char))) 결과) abcdefghijk
Python PyQt5 combobox import sys from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QMainWindow, QLabel, QGridLayout, QWidget, QComboBox from PyQt5.QtCore import QSize, QRect class ExampleWindow(QMainWindow): def __init__(self): QMainWindow.__init__(self) self.setMinimumSize(QSize(300, 300)) self.setWindowTitle("PyQt5 Combobox example") centralWidget = QWidget(self) self.setCentralW..
python 리스트 슬라이싱 파이썬 리스트에 있는 데이터에 하나씩 접근할 때는 인덱싱을 사용하면 됩니다.그런데 리스트에 있는 여러 개의 데이터에 동시에 접근하려면 이럴 때 사용하는 것이 바로 파이썬 슬라이싱입니다. 파이썬 리스트의 슬라이싱은 문자열 슬라이싱과 동일합니다.kospi_top10 = ['삼성전자', 'SK하이닉스', '현대차', '한국전력', '아모레퍼시픽', '제일모직', '삼성전자우', '삼성생명', 'NAVER', '현대모비스'] print("시가총액 3위: ", kospi_top10[2]) >>시가총액 3위: '현대차' kospi_top5 = kospi_top10[0:5] kospi_top5 >>['삼성전자', 'SK하이닉스', '현대차', '한국전력', '아모레퍼시픽'] kospi_t..