-6

I have a word "biPAP" and some other words like this I just want the output like "BiPAP" using python.

sourab maity
  • 1,030
  • 2
  • 7
  • 15

1 Answers1

0
word = 'testWord'    
word = word[0].upper() + word[1:]
Rutger
  • 583
  • 4
  • 11