python PFE_chp2_ex3_compute付费

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python PFE_chp2_ex3_compute付费相关的知识,希望对你有一定的参考价值。

#Exercise 3: Write a program to prompt the user for hours and rate per hour to compute gross pay.
#Python for Everybody: Exploring Data in Python 3 (Kindle Locations 566-567). Kindle Edition. 

#Enter Hours: 35
#Enter Rate: 2.75
#Pay: 96.25

inp = input('Enter Hours: ')
hours = float(inp)
inp = input('Enter Rate: ')
rate = float(inp)
pay = hours * rate
print('Pay:', pay)

以上是关于python PFE_chp2_ex3_compute付费的主要内容,如果未能解决你的问题,请参考以下文章

python 2 和 python 3的继承

2.27python__del__()方法

python_5

PYTHON学习之路_PYTHON基础

Python_基础_Day_2

python Python __future__ 2.x过渡3.x支持