Python 2.7.12rc1 (v2.7.12rc1:13912cd1e7e8, Jun 12 2016, 05:57:31) [MSC v.1500 64 bit (AMD64)] on win32

Type "copyright", "credits" or "license()" for more information.>>> str1="i love fish">>> str1[:6]‘i love‘>>> str="111eee">>> str.isalnum()

True>>> str6="i love cppc">>> str‘111eee‘>>> str6‘i love cppc‘>>> str6.splice()

Traceback (most recent call last):

File "", line 1, in

str6.splice()

AttributeError: ‘str‘ object has no attribute ‘splice‘>>> str6.split()

[‘i‘, ‘love‘, ‘cppc‘]>>> str6‘i love cppc‘>>> str6.title()‘I Love Cppc‘>>> "{a} love {b}.{c}".format(a=‘i‘,b=‘fish‘,c=‘com‘)‘i love fish.com‘>>> {0}.format("ni")

Traceback (most recent call last):

File "", line 1, in

{0}.format("ni")

AttributeError: ‘set‘ object has no attribute ‘format‘>>> "{0}".format("ni")‘ni‘>>> {{0}}.format("ni")

Traceback (most recent call last):

File "", line 1, in

{{0}}.format("ni")

TypeError: unhashable type: ‘set‘>>> "{{0}}".format("ni")

File "", line 2 "{{0}}".format("ni") ^IndentationError: unexpected indent>>> "{}".format("ni")‘ni‘>>> "{{0}}".format("ni")‘{0}‘>>> "{0:.1lf}{1}".format(27.546,GB)

Traceback (most recent call last):

File "", line 1, in "{0:.1lf}{1}".format(27.546,GB)

NameError: name ‘GB‘ is not defined>>> "{0:.1lf}{1}".format(‘27.546‘,‘GB‘)

Traceback (most recent call last):

File "", line 1, in "{0:.1lf}{1}".format(‘27.546‘,‘GB‘)

ValueError: Invalid conversion specification>>> "{0:.1lf}{1}".format(27.546,‘GB‘)

Traceback (most recent call last):

File "", line 1, in "{0:.1lf}{1}".format(27.546,‘GB‘)

ValueError: Invalid conversion specification>>> "{0:.1f}{1}".format(‘27.546‘,‘GB‘)

Traceback (most recent call last):

File "", line 1, in "{0:.1f}{1}".format(‘27.546‘,‘GB‘)

ValueError: Unknown format code ‘f‘ for object of type ‘str‘>>> ‘{0:.1lf}{1}‘.format(27.546,‘GB‘)

Traceback (most recent call last):

File "", line 1, in ‘{0:.1lf}{1}‘.format(27.546,‘GB‘)

ValueError: Invalid conversion specification>>> "{0:.lf}{1}".format(27.546,‘GB‘)

Traceback (most recent call last):

File "", line 1, in "{0:.lf}{1}".format(27.546,‘GB‘)

ValueError: Format specifier missing precision>>> "{0:.1f}{1}".format(27.546,‘GB‘)‘27.5GB‘>>> ‘%c %c %c‘ % (97,97,99)‘a a c‘>>> ‘%e‘ % 27.3342‘2.733420e+01‘>>>

fz.gif

730879-20161109000826483-1186935592.png

730879-20161109000807889-515814846.png

730879-20161109000818202-1297277783.png

原文:http://13064681.blog.51cto.com/13054681/1943453

Logo

瓜分20万奖金 获得内推名额 丰厚实物奖励 易参与易上手

更多推荐