有的时候写python的代码不能指明类型,作为用java语言习惯的人来说,特别难受,所以再写代码的时候希望也能顺便指明一下类型
def fn(a:int,b:bool,c:str=‘hello‘) -> int:
‘‘‘
这是一个文档字符串的示例
函数的作用:。。。。。
函数的参数:
a,作用,类型,默认值。。。。
b,作用,类型,默认值。。。。
c,作用,类型,默认值。。。。
‘‘‘
return 10
help(fn)
Help on function fn in module __main__:
fn(a: int, b: bool, c: str = ‘hello‘) -> int
这是一个文档字符串的示例
函数的作用:。。。。。
函数的参数:
a,作用,类型,默认值。。。。
b,作用,类型,默认值。。。。
c,作用,类型,默认值。。。。
help(eval)
Help on built-in function eval in module builtins:
eval(source, globals=None, locals=None, /)
Evaluate the given source in the context of globals and locals.
The source may be a string representing a Python expression
or a code object as returned by compile().
The globals must be a dictionary and locals can be any mapping,
defaulting to the current globals and locals.
If only globals is given, locals defaults to it.
原文:https://www.cnblogs.com/kehao/p/14584123.html