Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 10, 2020 08:04
Show Gist options
  • Save uncoded-ro/2ac1f21c710c1ad12069dcd7ad392c35 to your computer and use it in GitHub Desktop.
Save uncoded-ro/2ac1f21c710c1ad12069dcd7ad392c35 to your computer and use it in GitHub Desktop.
def patrat(x):
"""Returneaza patratul lui x.
>>> patrat(2)
4
>>> patrat(-2)
4
"""
return x * x
if __name__ == '__main__':
import doctest
doctest.testmod()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment