1. 程式人生 > >python計算圓面積

python計算圓面積

python gbk 運算 spa clas Coding 相關 pytho color

 1 #coding=gbk
 2 #coding=utf-8
 3 #-*- coding: UTF-8 -*-
 4 #調用math包處理相關的運算
 5 import math
 6 #圓半徑
 7 r = 2
 8 #計算圓面積π*r*r與 圓周率pi
 9 s = math.pi*r*r
10 print("圓面積:{:.10f}".format(s))

1.python中的math包主要處理相關的運算

2."{:.10f}"是保留小數點後0位數字

3.format函數相當於以前python中的%

python計算圓面積