积分充值
 首页
前端开发
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)综合其他(288)Weblate(229)PyWebIO(86)云计算&大数据(78)数据库(62)Jupyter(62)Julia(57)Scrapy(48)

语言

全部英语(701)中文(简体)(225)中文(繁体)(20)日语(4)法语(3)西班牙语(2)德语(1)意大利语(1)韩语(1)

格式

全部PDF文档 PDF(629)其他文档 其他(331)DOC文档 DOC(1)PPT文档 PPT(1)
 
本次搜索耗时 0.055 秒,为您找到相关结果约 962 个.
  • 全部
  • 后端开发
  • Python
  • 综合其他
  • Weblate
  • PyWebIO
  • 云计算&大数据
  • 数据库
  • Jupyter
  • Julia
  • Scrapy
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 日语
  • 法语
  • 西班牙语
  • 德语
  • 意大利语
  • 韩语
  • 全部
  • 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文档 PyFlink 1.15 Documentation

    LOCALLY 1. Install dependency requirements python3 -m pip install -r dev/requirements.txt 2. Conda install pandoc conda install pandoc 3. Build the docs python3 setup.py build_sphinx 4. Open the pyfl to 3.8 You could check your Python version as following: 3 pyflink-docs, Release release-1.15 python3 --version Create a Python virtual environment Virtual environment gives you the ability to isolate a virtual environment using virtualenv To create a virtual environment using virtualenv, run: python3 -m pip install virtualenv # Create Python virtual environment under a directory, e.g. venv virtualenv
    0 码力 | 36 页 | 266.77 KB | 1 年前
    3
  • pdf文档 PyFlink 1.16 Documentation

    LOCALLY 1. Install dependency requirements python3 -m pip install -r dev/requirements.txt 2. Conda install pandoc conda install pandoc 3. Build the docs python3 setup.py build_sphinx 4. Open the pyfl to 3.8 You could check your Python version as following: 3 pyflink-docs, Release release-1.16 python3 --version Create a Python virtual environment Virtual environment gives you the ability to isolate a virtual environment using virtualenv To create a virtual environment using virtualenv, run: python3 -m pip install virtualenv # Create Python virtual environment under a directory, e.g. venv virtualenv
    0 码力 | 36 页 | 266.80 KB | 1 年前
    3
  • pdf文档 Debian 维护者指南

    Makefile(shell,命令行界面) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 8.4 setup.py(Python3,命令行界面) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 8.5 Makefile(shell,图形界面) Makefile(shell,图形界面) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94 8.6 setup.py(Python3,图形界面) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 8.7 Makefile(单个二进制软件包) 用户和未来的开发者,描述了使 用 debmake 命令构建 Debian 软件包的方法。 本指南注重描述现代的打包风格,同时提供了许多简单的示例。 • POSIX shell 脚本打包 • Python3 脚本打包 • C 和 Makefile/Autotools/CMake • 含有共享库的多个二进制软件包的打包,等等。 本篇《Debian 维护者指南》可看作《Debian 新维护者手册》的继承文档。
    0 码力 | 142 页 | 1.11 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
共 962 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 97
前往
页
相关搜索词
python3学习手册Python3基础教程基础教程雪峰03杜逸先特性改进PyFlink1.15Documentation1.16Debian维护维护者指南PyConChina2022杭州ARM芯片PythonAI算力优化朱宏林JupyterNotebook6.46.2
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩