본문 바로가기
반응형

Python56

[Python]파이썬 출력 화면 지우기 https://jellyho.com/blog/96/ [Python]파이썬 출력 화면 지우기 (1줄 지우기, 윈도우, 리눅스, 주피터, 구글 코랩)코딩을 하다보면 다양한 이유로 출력된 화면을 지우고 싶을 때가 있다. 장기간 비슷한 내용을 출력해야 하는데 …jellyho.com  코딩을 하다보면 다양한 이유로 출력된 화면을 지우고 싶을 때가 있다. 장기간 비슷한 내용을 출력해야 하는데 화면을 지우지 않고 계속 출력하다보면 계속 아래로 내려가기 때문에 지저분하기도 하고....이번 포스트에서는 파이썬에서 출력을 지우는 다양한 방법을 알아보겠다.먼저 1줄을 지우는 방법이다. 간단하게 print()함수의 end옵션과 \r를 이용하면 된다.print("hello", end="")print("\rgoodbye", en.. 2024. 5. 10.
[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.
[Python] Candle Stick Chart https://levelup.gitconnected.com/7-fascinating-python-financial-graphs-that-will-amaze-you-b21d5f65cd1a 7 Fascinating Python Financial Graphs That Will Amaze You!Introduction: Exploring the Power of Python in Financial Graphslevelup.gitconnected.com  import plotly.graph_objects as goimport pandas as pd# Sample data: Date, Open, High, Low, Closedata = { 'Date': pd.date_range(start='2024-01-01'.. 2024. 5. 7.
Dragon Moving Banner #Dragon Moving Bannerimport matplotlib.pyplot as pltimport numpy as npfrom matplotlib.image import imread# Load two PNG imagesimage1_path = "1.png"image2_path = "2.png"x1 = imread(image1_path)x2 = imread(image2_path)'''# two images x1 is initially visible, x2 is notx1 = np.random.random((100, 100))x2 = np.random.random((150, 175))'''# Set the size of the figureplt.figure(figsize=(10, 2))# arbitr.. 2024. 5. 7.
반응형