fork download
  1. from sys import stdin
  2. from math import pi
  3.  
  4. convs = {
  5. "dd": (lambda x: x),
  6. "dr": (lambda x: x * (pi / 180)),
  7. "rd": (lambda x: x * (180 / pi)),
  8. "rr": (lambda x: x),
  9. "cc": (lambda x: x),
  10. "cf": (lambda x: x * (9 / 5) + 32),
  11. "ck": (lambda x: x + 273.15),
  12. "fc": (lambda x: (x - 32) * (5 / 9)),
  13. "ff": (lambda x: x),
  14. "fk": (lambda x: (x + 459.67) * (5 / 9)),
  15. "kc": (lambda x: x - 273.15),
  16. "kf": (lambda x: x * (9 / 5) - 459.67),
  17. "kk": (lambda x: x)
  18. }
  19.  
  20. for input in stdin:
  21. input = input.strip()
  22. val = float(input[:-2])
  23. conv = input[-2:]
  24. if conv in convs:
  25. print("{:.1f}".format(convs[conv](val)) + conv[1])
  26. else:
  27. print("No candidate for conversion")
Success #stdin #stdout 0.02s 9936KB
stdin
212fc
70cf
100cr
315.15kc
stdout
100.0c
158.0f
No candidate for conversion
42.0c