Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Python | クラスメソッドの宣言

概要

クラスメソッドの宣言

内容

@classmethodアノテーションを利用してクラスメソッドを宣言します

サンプルコード

# -*- coding: utf-8 -*-
class Hoge:
  @classmethod
  def hoge(cls, value): 
    print "hoge" + value

Hoge.hoge("hige")

出力

hogehige