美文网首页
Python 12 Programming Tutorial

Python 12 Programming Tutorial

作者: 豆表示低调 | 来源:发表于2016-08-30 14:41 被阅读0次
def beef():
    print("Dayum, functions are cool!")


def bitcoin_to_usd(btc):
    amount = btc * 527
    print(amount)


beef()
bitcoin_to_usd(3.85)
bitcoin_to_usd(1)
bitcoin_to_usd(13)

相关文章

网友评论

      本文标题: Python 12 Programming Tutorial

      本文链接:https://www.haomeiwen.com/subject/tlaxettx.html