class.py
class Person(object): #python3ではobject書かなくても良い
def say_something(self):
print('hello')
person = Person()
person.say_something() #hello
Go to list of users who liked
More than 3 years have passed since last update.
class Person(object): #python3ではobject書かなくても良い
def say_something(self):
print('hello')
person = Person()
person.say_something() #hello
Register as a new user and use Qiita more conveniently
Go to list of users who liked