본문 바로가기
반응형

2024/057

[Python]파이썬 출력 화면 지우기 https://jellyho.com/blog/96/ [Python]파이썬 출력 화면 지우기 (1줄 지우기, 윈도우, 리눅스, 주피터, 구글 코랩)코딩을 하다보면 다양한 이유로 출력된 화면을 지우고 싶을 때가 있다. 장기간 비슷한 내용을 출력해야 하는데 …jellyho.com  코딩을 하다보면 다양한 이유로 출력된 화면을 지우고 싶을 때가 있다. 장기간 비슷한 내용을 출력해야 하는데 화면을 지우지 않고 계속 출력하다보면 계속 아래로 내려가기 때문에 지저분하기도 하고....이번 포스트에서는 파이썬에서 출력을 지우는 다양한 방법을 알아보겠다.먼저 1줄을 지우는 방법이다. 간단하게 print()함수의 end옵션과 \r를 이용하면 된다.print("hello", end="")print("\rgoodbye", en.. 2024. 5. 10.
[RaspberryPi] sudo apt-get update error PROB)sudo apt-get updateHit:1 http://deb.debian.org/debian bullseye InReleaseGet:2 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]Get:3 http://security.debian.org/debian-security bullseye-security InRelease [48.4 kB]Get:4 http://archive.raspberrypi.org/debian bullseye InRelease [23.6 kB]Reading package lists... DoneE: Release file for http://deb.debian.org/debian/dists/bullseye.. 2024. 5. 10.
NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기 https://blog.naver.com/roboholic84/221187848414NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기 NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기NodeMCU를 사용하여 “HELLO WORLD!” 웹에 출력하기 NodeMCU 구매 바로가기 (국내...blog.naver.com     업로드가 완료된 후에, 오른쪽 상단의 시리얼 모니터링 버튼을 클릭하고 NodeMCU의 리셋버튼을 누르면 원격 접속하기 위한 URL을 확인할 수 있습니다. #include const char* ssid = "iptime";const char* password = ""; WiFiServer server(80); void setup() { Serial.beg.. 2024. 5. 9.
[Python]PyQt Widgets https://www.pythonguis.com/tutorials/pyqt-basic-widgets/ PyQt5 Widgets — QCheckBox, QComboBox, QPushButton, QLabel, QSliderPyQt5 has a huge library of widgets, including buttons, checkboxes, list boxes, and sliders or dials. Learn how to use them in your apps. In Qt, like in most GUI frameworks, widget is the name given to a component of the UI that the user can interact with.www.pythonguis.com .. 2024. 5. 7.
반응형