Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Created October 3, 2019 19:27
Show Gist options
  • Select an option

  • Save shifatul-i/1bb5a81d631d914755a95f7a7d7ecf8c to your computer and use it in GitHub Desktop.

Select an option

Save shifatul-i/1bb5a81d631d914755a95f7a7d7ecf8c to your computer and use it in GitHub Desktop.
number = 1 + 2 * 3 / 4.0
print(number)
remainder = 11 % 3
print(remainder)
squared = 7 ** 2
print(squared)
cubed = 2 ** 3
print(cubed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment