파이썬[Python]: kivy - Label 클래스

kivy.uix.label 모듈 - Label 클래스(class)


/// 설명

사용자가 읽을 수 있는 형식을 표현합니다. ascii와 unicode 문자열들을 지원합니다.

참고: uix 모듈 목록

※ 형식
Label(**kwargs)

reference
https://kivy.org/doc/stable/api-kivy.uix.label.html

/// 예제

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import kivy
 
kivy.require('2.0.0')
 
from kivy.app import App
from kivy.uix.label import Label
 
 
class TestApp(App):
    def build(self):
        test_label = Label(text='GUI Programming, It is interesting')
        return test_label
 
 
TestApp().run()
cs

/// 출력


/// 예제 font-size

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import kivy
 
kivy.require('2.0.0')
 
from kivy.app import App
from kivy.uix.label import Label
 
 
class TestApp(App):
    def build(self):
        # font_size='80sp'
        test_label = Label(text='GUI Programming\nIt is interesting', font_size='80sp')
        return test_label
 
 
TestApp().run()
 
cs

/// 출력


* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)


– 당신을 응원합니다. –

댓글

이 블로그의 인기 게시물

파이썬[Python]: 내장함수 - from_bytes 메서드

파이썬[Python]: 내장함수 - __len__ 메서드

파이썬[Python]: kivy - 한글 사용

C 언어: sin 함수, cos 함수, tan 함수

파이썬[Python]: 내장함수 - bit_length 메서드