# -*- mode: snippet -*-
# name: __float__
# key: _float
# group: Special methods
# --
def __float__(self):
    return $0
