博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python基础:语法基础(3)
阅读量:6720 次
发布时间:2019-06-25

本文共 2039 字,大约阅读时间需要 6 分钟。

本篇主要介绍Python中一些基础语法,其中包括:标识符、关键字、常量、变量、表达式、语句、注释、模块和包等内容。

1. 标识符和关键字

1.1 标识符

  标识符是变量、常量、函数、属性、类、模块和包等指定的名称,Python语言中标识符的命名规则如下:

  (1)区分大小写,例Name与name是两个不同的标识符;

  (2)标识符首字母可以是下划线“_”或字母,但不能是数字;

  (3)标识符除首字母外的其它字符,可以是下划线“_”、字母和数字;

  (4)关键字不作为标识符;

  (5)Python内建函数不能作为标识符。

1.2 关键字

  Python语言中有33个关键字,其中只有三个(即True、False和None)首字母大写,其它均为全部小写。

>>> help()Welcome to Python 3.7's help utility!If this is your first time using Python, you should definitely check outthe tutorial on the Internet at https://docs.python.org/3.7/tutorial/.Enter the name of any module, keyword, or topic to get help on writingPython programs and using Python modules.  To quit this help utility andreturn to the interpreter, just type "quit".To get a list of available modules, keywords, symbols, or topics, type"modules", "keywords", "symbols", or "topics".  Each module also comeswith a one-line summary of what it does; to list the modules whose nameor summary contain a given string such as "spam", type "modules spam".help> keywordsHere is a list of the Python keywords.  Enter any keyword to get more help.False               class               from                orNone                continue            global              passTrue                def                 if                  raiseand                 del                 import              returnas                  elif                in                  tryassert              else                is                  whileasync               except              lambda              withawait               finally             nonlocal            yieldbreak               for                 not

2. 变量和常量

2.1 变量

  在Python中声明变量时,不需要指定数据类型。Python是动态类型语言,不会检查数据类型,在声明变量时不需要指定数据类型。

  在使用变量前需要对其赋值。没有赋值的变量是没有意义的,编译器会编译不通过。

  同一个变量可以反复赋值,而且可以是不同类型的变量。

  当不能确定变量或数据的类型时,可以使用解释器内置的函数type进行确认。

>>> hello = 'Hello World!'>>> hello'Hello World!'>>> type(hello)
>>> hello = 100>>> hello100>>> type(hello)

2.2 常量

  Python不能从语法上定义常量,Python没有提供一个关键字使得变量不能被修改。

  Python中只能讲变量当成常量使用,只是不要修改它。

转载地址:http://aocmo.baihongyu.com/

你可能感兴趣的文章
简述:五个步骤,保护移动APP应用免受恶意篡改
查看>>
部署SharePoint 2013
查看>>
五把Linux分区管理利器,你最喜欢哪个?
查看>>
SQL的左连接和右连接有什么区别
查看>>
storm
查看>>
F2C模式,你的电商你做主
查看>>
30分钟入门Oracle sql语句
查看>>
javascript-事件绑定
查看>>
linux磁盘分区命令及操作
查看>>
关于flash播放器不为人知的四大点
查看>>
窗口显示时让字段获得焦点
查看>>
【翻译】如何创建Ext JS暗黑主题之一
查看>>
【拓扑排序】确定比赛名次
查看>>
hibernate(三)基本配置,log4j、JUnit配置
查看>>
屏幕电脑变成了黑白屏模式
查看>>
curl模拟提交
查看>>
一张图看明白云计算架构核心竞争力
查看>>
clip实现圆环进度条
查看>>
Cacti中文版安装配置
查看>>
开始 新征程
查看>>