python中len函數

你要print才會輸出

#!/bin/python
#coding=gb18030
a="hello"
l=len(a)
printl

❷ len是python內置函數嗎

是的

請看下面的內容

>>>importbuiltins
>>>dir(builtins)
['ArithmeticError','AssertionError','AttributeError','BaseException','BlockingIOError','BrokenPipeError','BufferError','BytesWarning','ChildProcessError','ConnectionAbortedError','ConnectionError','ConnectionRefusedError','ConnectionResetError','DeprecationWarning','EOFError','Ellipsis','EnvironmentError','Exception','False','FileExistsError','FileNotFoundError','FloatingPointError','FutureWarning','GeneratorExit','IOError','ImportError','ImportWarning','IndentationError','IndexError','InterruptedError','IsADirectoryError','KeyError','KeyboardInterrupt','LookupError','MemoryError','NameError','None','NotADirectoryError','NotImplemented','NotImplementedError','OSError','OverflowError','PendingDeprecationWarning','PermissionError','ProcessLookupError','RecursionError','ReferenceError','ResourceWarning','RuntimeError','RuntimeWarning','StopAsyncIteration','StopIteration','SyntaxError','SyntaxWarning','SystemError','SystemExit','TabError','TimeoutError','True','TypeError','UnboundLocalError','UnicodeDecodeError','UnicodeEncodeError','UnicodeError','UnicodeTranslateError','UnicodeWarning','UserWarning','ValueError','Warning','WindowsError','ZeroDivisionError','__build_class__','__debug__','__doc__','__import__','__loader__','__name__','__package__','__spec__','abs','all','any','ascii','bin','bool','bytearray','bytes','callable','chr','classmethod','compile','complex','right','credits','delattr','dict','dir','divmod','enumerate','eval','exec','exit','filter','float','format','frozenset','getattr','globals','hasattr','hash','help','hex','id','input','int','isinstance','issubclass','iter','len','license','list','locals','map','max','memoryview','min','next','object','oct','open','ord','pow','print','property','quit','range','repr','reversed','round','set','setattr','slice','sorted','staticmethod','str','sum','super','tuple','type','vars','zip']

❸ python len()函數運算結果

printfaulty[0:5,1]

第一個輸出這樣試試,應該是有5個元素,你只列印了4個

❹ python中len是什麼意思

>>> list = [1,2,3]
>>> len(list)
3
>>> l = '123'
>>> len(l)
3
>>> s = set(list)
>>> s
set([1, 2, 3])
>>> len(s)
3
長度或者元素個數的統計

❺ python 3.2版本如何使用len函數

alist=[1,2,3]
aa=len(alist)
print(aa)

❻ python中sort的key=len的len是什麼如果len是函數,那為什沒有括弧

就是len函數,這個列表是迭代的時候,動態傳遞的參數

❼ 求大神!!python中len函數運算沒有結果

names=['a','b','c','d']
print(len(names))

加上print可以顯示的

❽ 關於Python len函數問題

雖然我覺得你已經解決了不過還是回答一下,line 1 括弧裡面的"I ask the world what is the love:"是直接輸出的,你直接在後面寫你想要顛倒的內容就行,程序本身是正確的。