Python3 实战项目系列之 一

Python  实战案例一:交互式求圆面积

# -*- coding:utf-8 -*-

import math

'''案例一:交互式求圆面积'''

while True:
    # 用户输入
    r = input("请输入圆的半径:")

    if not r.isalpha():
        
        # 数据类型转化
        r = float(r)
        
        # 计算面积
        ciclesArea = math.pi*r**2
        print("圆面积是:" + str(ciclesArea))
        print("\n\t1:继续;2:退出\n")
s
= input("请选择:")
if int(s) == 1: continue elif int(s) == 2: break else: print("你输入的数据类型异常,请重新输入") continue

 

 

转载于:https://www.cnblogs.com/RHadoop-Hive/p/9340341.html

你可能感兴趣的:(Python3 实战项目系列之 一)