15
alam4tech
4 11 26
1164/ 1195
Last seen 3 years ago
Member for 7 years, 3 months, 12 days
Difficulty Normal
Best reviews / Newest reviews
First-KASEM007 1
You can return directly as return num % 2 == 0 since conditional statement will give True or False More
Simple but long-undead2k 1 1
I don't think you need this if block. if text[0].isupper() is False: splitText = text.split(" ") splitText[0] = splitText[0].capitalize() text = ' '.join(splitText) this is equivalent to simply returning text.capitalize() since capitalize work on whole string. From Python d More