python基本语法(1)

来源:互联网 发布:php 不识别utf8 编辑:程序博客网 时间:2024/06/06 05:50
  • python中的关键字:
    ‘and’ ‘as’ ‘assert’ ‘break’ ‘class’ ‘continue’ ‘def’ ‘del’ ‘elif’ ‘else’ ‘except’ ‘except’ ‘exec’ ‘finally’ ‘for’ ‘from’ ‘global’ ‘if’ ‘import’ ‘in’ ‘lambda’ ‘not’ ‘or’ ‘pass’ ‘print’ ‘raise’ ‘return’ ‘try’ ‘while’ ‘with’ ‘yield’
  • python中没有表示常量的,你可以吧变量大写,表示是常量,是可以改的。但
  • python 2中定义自己的字符编码:# -- coding:utf-8 --
  • python 3就不用。
    python的注释:单行:# 多行:“ ”” “ ””or”’ ”’
  • python2中的raw_input(只在2中是生效的)和python3中的input效果是一摸一样的
  • python2中的Input:接收是什么格式就是啥格式(接收的数据不带双引号,就当是变量,带双引号