240 发简信
IP属地:河北
  • 逆向输出字符串

    defletters(n): index=0 whileindex<len(n): index=index-1 print(n[index]) ...

  • 自定义的画正N边形函数

    from__future__importprint_function,division importmath importturtle bob=...

  • 实战

    python的格式化输出 #python格式化输出 ##%对于未知变量类型,用这样就不太方便了 name='lisi' age=45 print...

  • 字典类型

    a={}#定类字典类型 key/value print(type(a))#输出dict类型 a={} print(type(a)) myinfo...

  • 元组

    元组内容不能被修改。只能重新赋值。 但如果元组只的元组是列表了,那么此元组中的列表是可以修改的。比如 c=([1,2,3,4],'sdfas',...

  • list类型常用的内置函数

    str1=['aa','bb','cc','dd','ee','ff','gg','hh','ii'] append() str1.append...

  • python count()方法详解

    Python count()方法 Python 字符串 描述 Python count() 方法用于统计字符串里某个字符出现的次数。可选参数为在...

  • python 常用的方法

    capitalize() count() decode() encode() endswith() startswith() find() in...

  • python 如何禁用转义符或如何防止字符串发生转义

    如果一个字符串包含转义字符,如“adfdfasd\tfdsadf\t”,正常print会将\t看作转义字符tab,如果要使字符串按原样输出,则解...