Python-测验| Python字符串测验 |问题 17
问题 17:以下程序的输出是什么?
def gfgFunction():
"Geeksforgeeks is cool website for boosting up technical skills"
return 1
print (gfgFunction.__doc__[17:21])
(A)是
(二)酷
(三)网站
(D)对于答案:(乙)
说明:为该方法定义了一个文档字符串,通过在函数定义开始后的第一行放置一个字符串。可以使用函数的 __doc__ 属性引用文档字符串。因此它打印索引字符串。
这个问题的测验
如果您发现上面的帖子有任何错误,请在下面评论