Notice
Recent Posts
Recent Comments
Link
투케이2K
122. (python/파이썬) [Mac Os] : [clipboard] : clipboard 클립 보드 모듈 사용해 텍스트 copy 복사 수행 실시 본문
Python
122. (python/파이썬) [Mac Os] : [clipboard] : clipboard 클립 보드 모듈 사용해 텍스트 copy 복사 수행 실시
투케이2K 2024. 5. 15. 10:35[개발 환경 설정]
개발 툴 : VsCode
개발 언어 : python
[소스 코드]
# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
import clipboard
# --------------------------------------------------------------
# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. import clipboard : 파이썬에서 클립보드 기능을 사용할 때 사용되는 모듈입니다
# --------------------------------------------------------------
# 2. 클립 보드 모듈 설치 방법 : https://blog.naver.com/kkh0977/223447247741
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------
# [초기 변수 선언 실시]
strData = "hello twok !!"
# [클립 보드 사용해 텍스트 복사 수행]
clipboard.copy(strData)
# [로그 출력 수행]
print("")
print("----------------------------------------")
print("result :: success")
print("----------------------------------------")
print("")
# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
[결과 출력]
반응형
'Python' 카테고리의 다른 글
Comments