I have 2 strings
name1 = 'john smith'
name2 = 'John smith'
What command should I use to check whether name2 is a capitalized version of name1? (the return value is True)
name1 = 'john smith'
name2 = 'John smith'
What command should I use to check whether name2 is a capitalized version of name1? (the return value is True)
Comment