Docstring example July 10, 2020 def add1(x,y): " " "This return the sum of two numbers " " " return (x+y) print (add1(5,8)) print (add1._doc_) Read more