-
변경 방법1
from os import system
system("title "+"MyTitle")
변경 방법2
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW("MyTitle")
얻기 방법1
import ctypes
DefBuffer = 256
buffer1 = (ctypes.c_char * DefBuffer)()
res = ctypes.windll.kernel32.GetConsoleTitleW(buffer1, DefBuffer)
pytitle = buffer1.value
print (pytitle)
얻기 방법2
import ctypes
DefBuffer = 256
buffer1 = ctypes.create_unicode_buffer(DefBuffer)
res = ctypes.windll.kernel32.GetConsoleTitleW(buffer1, DefBuffer)
pytitle = buffer1.value
print (pytitle)
'Python' 카테고리의 다른 글
Python - 클래스 함수(static, 정적, 공유) (0) 2020.06.12 Python - 클래스 추상함수 구현 요구 (0) 2020.06.12 Python예제 - ctypes 데이터형 (0) 2019.03.05 Python예제 - ctypes 기초 (0) 2019.03.05 Python예제 목록 (0) 2018.12.10 Python예제 - SMTP Email (0) 2018.10.06 Python예제 - soup.prettify() (0) 2018.02.04 Python예제 - soup.find, soup.find_all (0) 2018.02.04