Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to check if string is camelcase python

def is_camel_case(s):
    return s != s.lower() and s != s.upper() and "_" not in s


tests = [
    "camel",https://stackoverflow.com/questions/10182664/check-for-camel-cas...
    "camelCase",
    "CamelCase",
    "CAMELCASE",
    "camelcase",
    "Camelcase",
    "Case",
    "camel_case",
]

for test in tests:
    print(test, is_camel_case(test))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #string #camelcase #python
ADD COMMENT
Topic
Name
9+5 =