标签:err 信息 ati 帮助信息 页面 名称 turn 函数 rand
1 >>> print(‘hello world‘) 2 hello world 3 >>> type(‘hello‘) 4 <class ‘str‘> 5 >>> int(12.1) 6 12
1 >>> help(abs) 2 Help on built-in function abs in module builtins: 3 4 abs(x, /) 5 Return the absolute value of the argument.
1 >>> abs(20) 2 20 3 >>> abs(-20) 4 20 5 >>> abs(3.14) 6 3.14 7 >>> abs(3.14) 8 3.14
1 >>> abs(7,8) 2 Traceback (most recent call last): 3 File "<pyshell#19>", line 1, in <module> 4 abs(7,8) 5 TypeError: abs() takes exactly one argument (2 given)
1 >>> abs(‘hello‘) 2 Traceback (most recent call last): 3 File "<pyshell#20>", line 1, in <module> 4 abs(‘hello‘) 5 TypeError: bad operand type for abs(): ‘str‘
1 >>> target=abs #变量target指向abs函数 2 >>> target(-5) #通过变量target调用abs函数 3 5 4 >>> target(3.14) #通过变量target调用abs函数 5 3.14 6 >>> target(-3.14) #通过变量target调用abs函数 7 3.14
标签:err 信息 ati 帮助信息 页面 名称 turn 函数 rand
原文地址:http://www.cnblogs.com/DLHe/p/7753867.html