15

Pythonのclassとの主な違いは何ですか? defPythonのクラスはdjango UI(ボタン)とやり取りできますか?

4

2 に答える 2

5

classクラスを定義します。

def関数を定義します。

class Foo:
    def Bar(self):
        pass

def Baz():
   pass

f = Foo() # Making an instance of a class.
f.Bar() # Calling a method (function) of that class.
Baz() # calling a free function
于 2013-09-18T08:42:31.980 に答える