mytest.py 107 B

12345678
  1. #!/usr/bin/env python3
  2. def doubler(n):
  3. return 2*n
  4. if __name__ == "__main__":
  5. print(doubler(21))