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函数返回原始字符串
      %%
    
    操作符号
      +-***///%
        <><=>===!=<>
      ( )
      [ ]
      { }
      @
      ,
      :
      .
      =
      ;
      +=-=*=/=//=%=**=
  • 相关阅读:
    Servlet设置Cookie无效
    IOS即时通讯XMPP搭建openfire服务器
    IOS之富文本编辑
    unittest单元测试框架总结
    杀死future处理的阻塞线程
    APP的UI设计原则
    如何降低一个程序的耦合性
    Hyperopt中文文档导读
    Hyperopt中文文档导读
    AdaBoost算法特性
  • 原文地址:https://www.cnblogs.com/kaishirenshi/p/9121296.html
Copyright © 2011-2022 走看看