基礎python5個例項運用
計算收益
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**3
print('球的表面積是:{:.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))
相關文章
- cluster例項運用
- Python基礎——切片例項Python
- 三通基礎與例項
- 用例基礎知識
- Python入門基礎知識例項,Python
- android原生開發recyclerview基礎例項AndroidView
- Flutter中表單元件綜合運用例項Flutter元件
- javascript訂閱模式淺析和基礎例項JavaScript模式
- python爬蟲之Beautiful Soup基礎知識+例項Python爬蟲
- PHP常見陣列函式與例項[基礎]]PHP陣列函式
- Python介紹和基礎運用Python
- face_recognition的5個應用例項
- JavaScript in運算子程式碼例項JavaScript
- CANopen設計基礎與運動控制運用
- Jmeter-邏輯控制器If Controller的例項運用JMeterController
- python自動化指令碼例項100條-自動化運維基礎例項解析-Python批量登入到伺服器執行任務...Python指令碼運維伺服器
- dd應用例項
- 軟體工程-用例圖基礎雜記軟體工程
- 表單運用和基礎練習
- JavaScript運動框架程式碼例項JavaScript框架
- 運動員與教練例項
- 前端基礎功能,原生js實現輪播圖例項教程前端JS
- 30 個例項詳解 ,讓運維徹底搞清TOP 命令!運維
- ”innerHTML“的應用例項HTML
- WEB例項:開發一個聊天室應用Web
- docker redis 多個例項DockerRedis
- 05-論證基礎:綜合運用
- 基於滴滴雲 DC2 搭建 VPP 應用例項
- 零基礎學習 Python 之細說類屬性 & 例項Python
- SpringBoot基礎系列之自定義配置源使用姿勢例項演示Spring Boot
- 如何區分例項化網格中的每個例項
- Java基礎-單例模式Java單例模式
- ASP.NET Web Pages基礎知識---Razor 例項:顯示圖片ASP.NETWeb
- 用 Ansible 來交付 Vagrant 例項
- Debug和幾個小例項
- frida 建立一個ArrayList例項
- MyBatis基於Maven入門例項MyBatisMaven
- C# 位運算及例項計算C#