0
Help me plz
In python for beginners. Topic strings. I can't solve the 11 code project plz help me
9 Réponses
+ 4
👉Re-read the lessons, look at their examples
👉Show your code
+ 1
It says either use docstrings or \n,.
Anyways, remove the blank spaces inside of your string. 
If you don't understand docstrings yet, you can always go back and re-read the lessons as often as you like
+ 1
I got it . Thanks alot
+ 1
The docstring for a function or method should summarize its behavior and document its arguments and return values
def docstring(x, y):
  ''' 
  Hi!!!
  1. 
  2. 
  3. 4. 5. 6. 
  7. 
  8. 
  9. 
  Bye bye!!!
  '''
  return x ** y
a = docstring(4, 5)
print(a)
print(docstring.__doc__)
  
print(print.__doc__)
0
The required output was same as mine but they says that you are close try again
0
Again:
👉 SHOW YOUR CODE
0
Would you please re generate the code for me
0
They ask to use """ and I can't understand this



