码迷,mamicode.com
首页 > 编程语言 > 详细

002天-python3-基础知识-变量

时间:2018-02-21 10:52:14      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:使用   with   赋值   函数   知识   cal   except   print   保留   

一. 变量

1. python 中的变量不需要声明。每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建。

2. 在 python 中,变量就是变量,它没有类型,我们所说的"类型"是变量所指的内存中对象的类型。

二. 变量的命名

1. 变量名只能包含字母数字下划线

2. 变量名不能以数字开头,且不能用python保留的关键字和函数名用作变量名。

三. python保留关键字

[False, None, True, and, as, assert, break, class, continue, def, del, elif, else, except, finally, for, from, global, if, import, in, is, lambda, nonlocal, not, or, pass, raise, return, try, while, with, yield]

 四.实例

 1.声明变量

#!/usr/bin/env python
#-*-coding:utf-8-*-
name = "yang"
print(name) 

002天-python3-基础知识-变量

标签:使用   with   赋值   函数   知识   cal   except   print   保留   

原文地址:https://www.cnblogs.com/yyx66/p/8456134.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!