我是靠谱客的博主 美满音响,最近开发中收集的这篇文章主要介绍python学习基础之变量,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  • 变量名只能包含字母、数字和下划线。变量名可以字母或下划线打头,但不能以数字打 头,例如,可将变量命名为message_1,但不能将其命名为1_message。
  • 变量名不能包含空格,但可使用下划线来分隔其中的单词。例如,变量名greeting_message 可行,但变量名greeting message会引发错误。
  • 不要将Python关键字和函数名用作变量名,即不要使用Python保留用于特殊用途的单词

Python中关键字

关键字都有特殊含义,如果用作变量名,将引发错误:

  Flase  class  finally  is  return  None  continue  for  lambda  try  True  

  def     from  nonlical  while  and  del  global  not  with  as  elif  if  or 

  yield   assert  else  import  pass  break  except  in  raise

Python内置函数

使用函数名作为变量,虽然不会导致错误,但是会覆盖这些函数的行为:

   abs()      divmod()      input()      open()      staticmethod()    

   all()        enumerate()     int()          ord()        str()

   any()      eval()         isinstance()     pow()       sum()

   basestring()   execfile()        issubclass()     print()      super()

   bin()       file()          iter()        property()    tuple()

   bool()       filter()        len()        range()       type()

   bytearray()   float()        list()        raw_input()     unichr()

   callable()     format()      locals()       reduce()      unicode()

   chr()       frozenset()      long()        reload()       vard() 

   classmethod()   getattr()      map()        repr()        xrange()

   cmp()      globals()      max()        reversed()     zip()  

   compile()     hasattr()       memoryview()     round()       _import_()

   complex()    hash()         min()        set()       apply()  

   delattr()      help()         next()        setattr()       buffer()

   dict()       hex()         object()      slice()       coerce()

   dir()         id()          oct()        sorted()      intern()

在2.7中print不是函数是关键字,python3中没有内置函数Unicode。

变量命名:

1.变量名应既简单又具有描述性。如:name比n好;

2.慎用小写字母l和大写字母O,容易看成数字的1和0。

 

  

转载于:https://www.cnblogs.com/yuruhao/p/6431994.html

最后

以上就是美满音响为你收集整理的python学习基础之变量的全部内容,希望文章能够帮你解决python学习基础之变量所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部