p =int(input('請輸入你的本金:'))
r =int(input('請輸入利率:'))
n =int(input('請輸入存的年份:'))
amount = p+p*(1+r)**n
print('本金利率和是:{:.2f}'.format(amount))
計算球體的表面積和體積
import math
r =int(input('請輸入球的半徑:'))
area =4*math.pi*r**2
volume =4/3*math.pi*r**3print('球的表面積是:{:.2f},球的體積是:{:.2f}'.format(area,volume))
申明函式計算收益
ef getvalue(b,r,n):
v = b*(1+r)**n
return v #這裡一定要返回值,不然amount就會不被定義
b =int(input('請輸入本金:'))
r =int(input('請輸入利率:'))
n =int(input('請輸入年份:'))
amount =getvalue(b,r,n)print('最終收益:{:.2f}'.format(amount))
計算函式x*x-10x+16=0的解
import math
a =float(input('請輸入a:'))
b =float(input('請輸入b:'))
c =float(input('請輸入c:'))
d = b**2-4*a*c
if a !=0:if d <0:print('無解')
elif d ==0:
s =-b/(2*a)print('唯一根:x=',s)else:
s1 =(-b-math.sqrt(d))/(2*a)
s2 =(-b+math.sqrt(d))/(2*a)print('兩解,x1={:.2f},x2={:.2f}'.format(s1,s2))
計算您今年多少歲
import datetime
n =input('請輸入你的姓名:')
y =int(input('請輸入你的出生年月:'))
w = datetime.date.today().year
print('您好!{}。您{}歲'.format(n,w-y))