python教程

时间:2026年06月21日 11:35:15

Django 教程 | 菜鸟教程

本教程适合有 Python 基础的开发者学习。.学习本教程前你需要了解一些基础的 Web 知识及...

Python 变量类型 | 菜鸟教程

#!/usr/bin/python# -*- coding: UTF-8 -*-counter=100# 赋值整型变量miles=1000.0# 浮点型name= John # 字符串printcounterprintmilesprintname.python的字串列表有2种取...

Docker 安装 Python | 菜鸟教程

可以通过 Sort by 查看其他版本的 python,默认是最新版本python:latest。.此外,我们还可以用 docker search python 命令来查看可用版本:...

Python安装和使用 — Python 3.7.13 文档

2026年5月28日 - Python安装和使用 这一部分文档专门介绍关于在不同平台上设置Python环境、调用解释器以及让使用Python更容易的一些事情的有用信息。 1. 命令行与环境1...

Python sorted() 函数 | 菜鸟教程

Python sorted() 函数 Python 内置函数 描述 sorted() 函数对所有可迭代的对象进行排序操作。 sort 与 sorted 区别: sort 是应用在 list 上的方法,sorted 可以对所有可迭代...