首页 > 代码库 > python_7

python_7

python各种符号

Keywords(关键字)
• and
• del
• from
• not
• while
• as
• elif
• global
• or
• with
• assert
• else
• if
• pass
• yield
• break
• except
• import
• print
• class
• exec
• in
• raise
• continue
• finally
• is
• return
• def
• for
• lambda
• try

 

 

• True
• False
• None
• strings
• numbers
• floats
• lists

字符串转义序列

• \\
• \‘
• \"
• \a
• \b
• \f
• \n
• \r
• \t
• \v

字符串格式化:

• %d
• %i
• %o
• %u
• %x
• %X
• %e
• %E
• %f
• %F
• %g
• %G
• %c
• %r
• %s
• %%

操作符号:

• +

• *
• **
• /
• //
• %
• <
• >
• <=
• >=
• ==
• !=
• <>
• ( )
• [ ]
• { }
• @
• ,
• :
• .
• =
• ;
• +=
• -=
• *=
• /=
• //=
• %=
• **=

 

 

 

python_7