您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Python3 菜鸟查询手册

  2. 目录: 01 教程.png 01.01 2.x与3.x版本区别.png 02 基础语法.png 02.01 命令行参数.png 03 基本数据类型.png 03.01 数据类型转换 int() 函数.png 03.02 数据类型转换 float() 函数.png 03.03 数据类型转换 complex() 函数.png 03.04 数据类型转换 str() 函数.png 03.05 数据类型转换 repr() 函数.png 03.06 数据类型转换 eval() 函数.png 03.07 数
  3. 所属分类:Python

    • 发布日期:2018-06-01
    • 文件大小:55574528
    • 提供者:jisuran
  1. python3.5 百度ai人脸识别

  2. 识别结果大概是这样 {'result': {'face_num': 1, 'face_list': [{'quality': {'occlusion': {'right_eye': 0, 'left_cheek': 0.1459853947, 'right_cheek': 0.05144193396, 'left_eye': 0.465408802, 'mouth': 0.02919708006, 'chin_contour': 0.01420217194, 'nose': 0}, 'illu
  3. 所属分类:Python

    • 发布日期:2018-09-20
    • 文件大小:3072
    • 提供者:shishuwei111
  1. Python3如何判断三角形的类型

  2. 主要介绍了Python3如何判断三角形的类型,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
  3. 所属分类:其它

    • 发布日期:2020-09-17
    • 文件大小:49152
    • 提供者:weixin_38557896
  1. Python3:判断三角形的类型

  2. import math A = input("请输入三角形边长A:") B = input("请输入三角形边长B:") C = input("请输入三角形边长C:") # 以下是判断输入值是否为字符,不是字符再继续执行,是字符则结束程序不再执行 if A.isdigit() and B.isdigit() and C.isdigit(): # 'str.isdigit()'判断某个字符串是数字还是非数字' A = float(A) B = float(B) C = float(C) el
  3. 所属分类:其它

    • 发布日期:2020-12-21
    • 文件大小:66560
    • 提供者:weixin_38655347
  1. Python3如何判断三角形的类型

  2. # 判断三角形类型 def triangle(a,b,c): if a>0 and b>0 and c>0: if a+b>c and b+c>a and a+c>b: if a == b and b == c: return ("这是等边三角形") elif a == b or b == c or c == a: return("这是等腰三角形") else:
  3. 所属分类:其它

    • 发布日期:2020-12-20
    • 文件大小:54272
    • 提供者:weixin_38698018