首页 > 其他分享 >模块

模块

时间:2022-12-16 01:44:31浏览次数:39  
标签:__ bmi py height width 模块 print

bmi.py
def fun_bmi(person,height,weight):
    print(person+'的身高'+str(height)+'米\t 体重:'+str(weight)+'千克')
    bmi=weight/(height*height)
print(person+'的BMI指数为:'+str(bmi))

bmi_.py
import bmi
bmi.fun_bmi('jm',175,100)

rectangle.py
def girth(width,height):
    return (width+ height)*2
def area(width,height):
    return width*height
if __name__=='__main__':
print(area(10,20))

circular.py
import math
PI=math.pi
def girth(r):
    return round(2*PI*r,2)

def area(r):
    return round(PI*r*r,2)
if __name__=='__main__':
print(girth(10))

compute.py
import rectangle as r
import circular as c
if __name__=='__main__':
    print('圆形的周长为:',c.girth(10))
print('矩形的周长为:',r.girth(10,20)

Settings.size.py
__width=800
__height=600
def change(w,h):
    global _width
    _width=w
    global _height
    _height=h
def getWidth():
    global _width
    return _width
def getHeight():
    global _height
return _height

main.py
from settings.size import *
if __name__=='__main__':
    change(1024,768)
    print('宽度:',getWidth())
print('高度:',getHeight())
checkcode.py
import random
if __name__=='__main__':
    checkcode=''
    for i in range(4):
        index=random.randrange(0,4)
        if index!=i and index+1!=i:
            checkcode+=chr(random.randint(97,122))
        elif index+1==i:
            checkcode+=chr(random.randint(65,90))
        else:
            checkcode+=str(random.randint(1,9))
print('验证码:',checkcode)

标签:__,bmi,py,height,width,模块,print
From: https://www.cnblogs.com/whc123/p/16986374.html

相关文章

  • python 日志 logging模块详解
    1、基本使用配置logging基本的设置,然后在控制台输出日志,importlogginglogging.basicConfig(level=logging.INFO,format='%(asctime)s-%(name)s-%(levelname)s-......
  • 【校招VIP】【约起来】活动发布模块:数据库设计
    商业实战项目【约起来】活动发布模块的第三节:数据库设计。本节讲一些细节,包括类型的设置,设置的要点等。商业数据表里有四个默认字段,字段的设置是马鞍型的,分大小写,命名方式......
  • freeswitch的distributor模块
      概述freeswitch是一款简单好用的VOIP开源软交换平台。当呼叫是同一个入中继,但是有多条出中继时,需要对出中继做负载均衡,mod_distributor模块可以完成对应的配置和......
  • PayCloud 企业付款功能模块正式发布 V2.0
     场景企业付款为企业提供付款至用户零钱的能力,支持通过API接口付款。付款目前PayCloud已接入支付宝、微信付款功能,客户可以通过平台对用户进行转账操作,也可以通过系统......
  • requests模块
    requests.get/post(url,params,data,headers,timeout,verify,allow_redirects,cookies)url:要下载的目标网页的URLparams:字典形式,设置URL后面的参数,比如?id=123&name=donf......
  • Python14 文件读写和编码&OS、path模块的使用
    编码文件读写操作#作者:咸瑜file=open("text.txt","r",encoding="utf-8")print(file.readlines())#['姓名:咸瑜\n','年龄:18\n','籍贯:广东·惠州']file.clo......
  • IGBT模块A2F12M12W2-F1、A2U12M12W2-F2为简化SiC逆变器而设计
    ACEPACK2电源模块是集成有SiC电源MOSFET技术的1200V模块。这些电源模块支持宽带隙碳化硅材料和高热性能基板的特性。A2F12M12W2-F1模块采用4组拓扑,A2U12M12W2-F2模块采用3......
  • CVE-2022-2639【Linux Kernel openvswitch 模块权限提升】
    漏洞影响版本:3.13≤LinuxKernel<5.18Exp地址:https://github.com/avboy1337/CVE-2022-2639-PipeVersion查看内核版本:编译exploit.c执行exp进行提权:......
  • vuex共享数据仓库的模块化使用
    一:概念: vuex是使用vue中必不可少的一部分,基于父子、兄弟组件,我们传值可能会很方便,但是如果是没有关联的组件之间要使用同一组数据,就显得很无能为力,那么vuex就很好的解决......
  • python中使用numpy模块画函数图像
    由于比较简单,只靠代码的注释就差不多了:1#导入需要的库importnumpyasnp2importmatplotlib.pyplotasplt34#定义变量和函数x=np.arange(-100,100,......