Skip to content

Instantly share code, notes, and snippets.

@ashutoshpipriye
Created May 27, 2020 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashutoshpipriye/30e929599588dd168dad6a640608ce61 to your computer and use it in GitHub Desktop.
Save ashutoshpipriye/30e929599588dd168dad6a640608ce61 to your computer and use it in GitHub Desktop.
#There is a function we are providing in for you in this problem called square.
#It takes one integer and returns the square of that integer value.
#Write code to assign a variable called xyz the value 5*5 (five squared).
#Use the square function, rather than just multiplying with *.
xyz = 25
squared = square(xyz)
print(squared)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment