Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python3
- def tc(n):
- return ~n + 1
- i = 5
- print("tc(%i) = %i" % (i, tc(i))) # Prints "tc(5) = -5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement