zoukankan      html  css  js  c++  java
  • python中的各种符号

    在这里所作的是将所有的 Python 符号和关键字列出来,这些都是值得掌握的重点。
    
    关键字
      anddelfromnotwhile
      as
      elifglobalor
      with
      assertelseifpassyieldbreakexceptimportprintclassexecinraisecontinuefinallyisreturndefforlambdatry
    
    数据类型
      True
      False
      None
      strings
      numbers
      floats
      lists
    
    字符串转义序列(Escape Sequences)
    
      \
      '
    "
      a
      
      f
      
    
      
    
      	
      v
    
    字符串格式化(String Formats)
      %d   -------》 数字
      %i
      %o
      %u
      %x
      %X
      %e
      %E
      %f  --------》 小数
      %F
      %g
      %G
      %c
      %r   ----------》%r 调用 rper函数打印字符串,repr函数返回的字符串是加上了转义序列,是直接书写的字符串的形式
      %s   ----------》%s 调用 str函数打印字符串,str函数返回原始字符串
      %%
    
    操作符号
      +-***///%
        <><=>===!=<>
      ( )
      [ ]
      { }
      @
      ,
      :
      .
      =
      ;
      +=-=*=/=//=%=**=
  • 相关阅读:
    yii分页
    ajax分页
    批删,全选
    网站开发的愿景
    margin collapse 坍塌
    URI URL URN
    Servlet
    Http请求
    进程间通信
    网络编程
  • 原文地址:https://www.cnblogs.com/kaishirenshi/p/9121296.html
Copyright © 2011-2022 走看看