“Python Kivy” Kod odpowiedzi

Python Kivy

#-*- coding: utf-8 -*-

from kivy.app import App
from kivy.uix.label import Label

class TestApp(App):
    def build(self):
        return Label(text='Hello World')

TestApp().run()

JavaCommons

Kivy Python

from kivy.app import App
from kivy.uix.button import Button

class TestApp(App):
    def build(self):
        return Button(text='My Name is Vivek')

TestApp().run()
Grumpy Gharial

Odpowiedzi podobne do “Python Kivy”

Pytania podobne do “Python Kivy”

Więcej pokrewnych odpowiedzi na “Python Kivy” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu