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)
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
网友评论