基礎python5個例項運用

2021-10-11 11:02:03 字數 1770 閱讀 9012

p =

int(

input

('請輸入你的本金:'))

r =int

(input

('請輸入利率:'))

n =int

(input

('請輸入存的年份:'))

amount = p+p*(1

+r)*

*nprint

('本金利率和是:'

.format

(amount)

)

import math

r =int

(input

('請輸入球的半徑:'))

area =

4*math.pi*r**2

volume =4/

3*math.pi*r**3

print

('球的表面積是:,球的體積是:'

.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

('最終收益:'

.format

(amount)

)

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=,x2='

.format

(s1,s2)

)

import datetime

n =input

('請輸入你的姓名:'

)y =

int(

input

('請輸入你的出生年月:'))

w = datetime.date.

today()

.year

print

('您好!{}。您{}歲'

.format

(n,w-y)

)

python 5個實用的技巧

下面我挑選出的這幾個技巧常常會被人們忽略,但它們在日常程式設計中能真正的給我們帶來不少幫助。1.字典推導 dictionary comprehensions 和集合推導 set comprehensions 大多數的python程式設計師都知道且使用過列表推導 list comprehensions...

python實用寶典 python 5個實用的技巧

下面我挑選出的這幾個技巧常常會被人們忽略,但它們在日常程式設計中能真正的給我們帶來不少幫助。1.字典推導 dictionary comprehensions 和集合推導 set comprehensions 大多數的python程式設計師都知道且使用過列表推導 list comprehensions...

python 5個頂級非同步框架推薦

python在3.4引入了 asyncio 庫,3.6新增了關鍵字 async和await,此後,非同步框架迅速發展了起來,效能上能和node.js比肩,除非是cpu密集型任務,否則沒有理由不適用非同步框架。如果你是web開發者,現在非同步web框架上有了更多選擇!1 tornado tornado...