积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(509)Python(343)PyWebIO(86)Jupyter(62)Julia(57)Scrapy(48)区块链(43)Django(34)Celery(31)nim(28)

语言

全部英语(411)中文(简体)(83)中文(繁体)(10)法语(2)中文(简体)(1)英语(1)

格式

全部PDF文档 PDF(311)其他文档 其他(196)DOC文档 DOC(1)PPT文档 PPT(1)
 
本次搜索耗时 0.070 秒,为您找到相关结果约 509 个.
  • 全部
  • 后端开发
  • Python
  • PyWebIO
  • Jupyter
  • Julia
  • Scrapy
  • 区块链
  • Django
  • Celery
  • nim
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 法语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • word文档 python3学习手册

    python3学习手册 简介: Python官网: h�ps://www.python.org Python由Guido van Rossum于1989年底发明,于1991年发行第一版, Python源代码遵循GPL协议 Python是一种解释型、面向对象、动态数据类型、可交互的语言 python2.0于2000-10-16发布,于2020年1月1日停止更新2.x版本, Python-2.7成为最后一个py ①进入交互模式 # python3 #输入python3 回车 >>> #这里可执行python代码,类似shell脚本 >>> print("hello") >>> exit() #退出交互模式 ②执行一次性代码 # python3 -c " #内容如下3行 #!/usr/bin/env python3 # coding=u�-8 print("hello world") # chmod +x test.py #添加可执行权限 # python3脚本文件开头位置要指定以下2行(使用的python解释器及本 源码文件编码) #!/usr/bin/env python3 # coding=u�-8 # python2脚本文件里要指定以下2行
    0 码力 | 213 页 | 3.53 MB | 1 年前
    3
  • pdf文档 Python3 基础教程 - 廖雪峰

    Python3 基础教程【完整版】 http://www.yeayee.com/ 1/531 Python3 基础教程 Python 教程 ................................................................................................................... 5 Python ......................................................................................... 135 Python3 基础教程【完整版】 http://www.yeayee.com/ 2/531 返回函数 .............................................. ......................................................................................... 267 Python3 基础教程【完整版】 http://www.yeayee.com/ 3/531 多线程 ...............................................
    0 码力 | 531 页 | 5.15 MB | 1 年前
    3
  • pdf文档 杜逸先 Python3 的新特性和改进

    Python3的新特性和改进 杭州美登科技 杜逸先 目录 CONTENTS Python的现状 Python3的新特性和改进 迁移到Python3 问答环节 1 Python的现状 Python的现状 Python2.7将于2020年1月1日停止维护 Python的现状 Python2.7将于2020年1月1日停止维护 主流Python包陆续终止对Python2的支持 Python的现状 Python的现状 Python2.7将于2020年1月1日停止维护 主流Python包陆续终止对Python2的支持 Python的现状 Python 3.0 2008.11 开启Python3时代 Python的现状 Python 3.0 Python 3.1 2009.6 collections.OrderedDict collections.Counter Python的现状 2 Python3的新特性和改进 ——重要变化 Python3的新特性和改进——重要变化 Text Vs. Data Instead Of Unicode Vs. 8-bit 内容 类型 混合使用 Python3 Text Vs. Data str Vs. bytes ✖ Python2 Unicode Vs. 8-bit unicode Vs. str ✔ Python3的新特性和改进——重要变化
    0 码力 | 78 页 | 2.28 MB | 1 年前
    3
  • pdf文档 PyConChina2022-杭州-ARM芯片的Python+AI算力优化-朱宏林

    • docker exec -ti torch_bm bash -c "cd /tmp/resnet50 && python3 performance.py” • docker exec -ti torch_bm bash -c "cd /tmp/resnet50 && python3 performance.py --bf16" 首次执行会下载预训练模型 输出执行耗时 PyTorch BF16 • docker exec -ti torch_bm bash -c "cd /tmp/maskrcnn && python3 performance.py” • docker exec -ti torch_bm bash -c "cd /tmp/maskrcnn && python3 performance.py --bf16" • 验证 Mask R-CNN 预测结果 • docker exec exec -ti torch_bm bash -c "cd /tmp/maskrcnn && python3 validate.py” • docker exec -ti torch_bm bash -c "cd /tmp/maskrcnn && python3 validate.py --bf16" 推理时间 FP32 BF16 PyTorch BF16 加速演示 • 测试 Mask R-CNN
    0 码力 | 24 页 | 4.00 MB | 1 年前
    3
  • pdf文档 Jupyter Notebook 6.4.4 Documentation

    } ], “metadata”: { “kernelspec”: { “display_name”: “Python 3”, “language”: “python”, “name”: “python3” }, “language_info”: { “codemirror_mode”: { “name”: “ipython”, “version”: 3 }, “file_extension”: } ], “metadata”: { “kernelspec”: { “display_name”: “Python 3”, “language”: “python”, “name”: “python3” }, “language_info”: { “codemirror_mode”: { “name”: “ipython”, “version”: 3 }, “file_extension”: } ], “metadata”: { “kernelspec”: { “display_name”: “Python 3”, “language”: “python”, “name”: “python3” }, “language_info”: { “codemirror_mode”: { “name”: “ipython”, “version”: 3 }, “file_extension”:
    0 码力 | 182 页 | 1.53 MB | 1 年前
    3
  • pdf文档 Jupyter Notebook 6.2.0 Documentation

    } ], “metadata”: { “kernelspec”: { “display_name”: “Python 3”, “language”: “python”, “name”: “python3” }, “language_info”: { “codemirror_mode”: { “name”: “ipython”, “version”: 3 }, “file_extension”: } ], “metadata”: { “kernelspec”: { “display_name”: “Python 3”, “language”: “python”, “name”: “python3” }, “language_info”: { “codemirror_mode”: { “name”: “ipython”, “version”: 3 }, “file_extension”: } ], “metadata”: { “kernelspec”: { “display_name”: “Python 3”, “language”: “python”, “name”: “python3” }, “language_info”: { “codemirror_mode”: { “name”: “ipython”, “version”: 3 }, “file_extension”:
    0 码力 | 176 页 | 1.51 MB | 1 年前
    3
  • epub文档 Jupyter Notebook 6.4.4 Documentation

    are on your system, run jupyter kernelspec list: $ jupyter kernelspec list Available kernels: python3 /home/takluyver/.local/lib/python3.6/site- packages/ipykernel/resources bash /home/takluyver/ like in the example above, is this default kernel. The default often does what you want, so if the python3 kernelspec points somewhere else and you can’t start a Python kernel, try deleting or renaming that Session. Default is your system username. MultiKernelManager.default_kernel_name : Unicode Default: 'python3' The name of the default kernel to start MultiKernelManager.kernel_manager_class : DottedObjectName
    0 码力 | 293 页 | 4.08 MB | 1 年前
    3
  • epub文档 Jupyter Notebook 6.2.0 Documentation

    are on your system, run jupyter kernelspec list: $ jupyter kernelspec list Available kernels: python3 /home/takluyver/.local/lib/python3.6/site- packages/ipykernel/resources bash /home/takluyver/ like in the example above, is this default kernel. The default often does what you want, so if the python3 kernelspec points somewhere else and you can’t start a Python kernel, try deleting or renaming that Session. Default is your system username. MultiKernelManager.default_kernel_name : Unicode Default: 'python3' The name of the default kernel to start MultiKernelManager.kernel_manager_class : DottedObjectName
    0 码力 | 283 页 | 4.07 MB | 1 年前
    3
  • pdf文档 Jupyter Notebook 6.5.1 Documentation

    these are on your system, run jupyter kernelspec list: $ jupyter kernelspec list Available kernels: python3 /home/takluyver/.local/lib/python3.6/site-packages/ipykernel/resources bash /home/takluyver/.loc like in the example above, is this default kernel. The default often does what you want, so if the python3 kernelspec points somewhere else and you can’t start a Python kernel, try deleting or renaming that Session. Default is your system username. MultiKernelManager.default_kernel_name [Unicode] Default: 'python3' The name of the default kernel to start MultiKernelManager.kernel_manager_class [DottedObjectName]
    0 码力 | 191 页 | 1.88 MB | 1 年前
    3
  • pdf文档 Jupyter Notebook 6.5.0 Documentation

    these are on your system, run jupyter kernelspec list: $ jupyter kernelspec list Available kernels: python3 /home/takluyver/.local/lib/python3.6/site-packages/ipykernel/resources bash /home/takluyver/.loc like in the example above, is this default kernel. The default often does what you want, so if the python3 kernelspec points somewhere else and you can’t start a Python kernel, try deleting or renaming that Session. Default is your system username. MultiKernelManager.default_kernel_name [Unicode] Default: 'python3' The name of the default kernel to start MultiKernelManager.kernel_manager_class [DottedObjectName]
    0 码力 | 189 页 | 1.88 MB | 1 年前
    3
共 509 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 51
前往
页
相关搜索词
python3学习手册Python3基础教程基础教程雪峰03杜逸先特性改进PyConChina2022杭州ARM芯片PythonAI算力优化朱宏林JupyterNotebook6.4Documentation6.26.5
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩