-6

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

sourab maity
  • 1,025
  • 2
  • 8
  • 16

1 Answers1

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