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

python中的各种符号

时间:2018-06-01 14:27:06      阅读:1383      评论:0      收藏:0      [点我收藏+]

标签:one   转义   ret   IV   and   pre   import   str   string   

在这里所作的是将所有的 Python 符号和关键字列出来,这些都是值得掌握的重点。

关键字
?  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

字符串转义序列(Escape Sequences)

?  \?  \?  \"
?  \a
?  \b
?  \f
?  \n
?  \r
?  \t
?  \v

字符串格式化(String Formats)
?  %d   -------》 数字
?  %i
?  %o
?  %u
?  %x
?  %X
?  %e
?  %E
?  %f  --------》 小数
?  %F
?  %g
?  %G
?  %c
?  %r   ----------》%r 调用 rper函数打印字符串,repr函数返回的字符串是加上了转义序列,是直接书写的字符串的形式
?  %s   ----------》%s 调用 str函数打印字符串,str函数返回原始字符串
?  %%

操作符号
?  +
?  -
?  *
?  **
?  /
?  //
?  %
    <
?  >
?  <=
?  >=
?  ==
?  !=
?  <>
?  ( )
?  [ ]
?  { }
?  @
?  ,
?  :
?  .
?  =
?  ;
?  +=
?  -=
?  *=
?  /=
?  //=
?  %=
?  **=

 

python中的各种符号

标签:one   转义   ret   IV   and   pre   import   str   string   

原文地址:https://www.cnblogs.com/kaishirenshi/p/9121296.html

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