sarathi_1234's blog

By sarathi_1234, history, 4 years ago, In English

Here the solution of the String Task problem in python guys.

If anyone knows the more optimal solution please comment down bellow

import re n=input() n=re.sub("[aeiouy]*([^aeiouy])[aeiouy]*", r".\1", n.lower()) print(n)

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

By sarathi_1234, history, 4 years ago, In English

Guys Anyone can suggest me why I got "wrong answer on test case 3 or 1" in fact my code produces the right output. Example:-

Caps Lock problem

n=input() p=n.capitalize() if n==n.upper(): print(n) else: print(p)

Full text and comments »

  • Vote: I like it
  • +3
  • Vote: I do not like it