목록문자열#펠린드롬 (1)
JustDoEat
[Python/String-Manipulation]Valid Palindrome
펠린드롬이란 ? 팰린드롬"은 주어진 문자열을 앞으로 읽든 뒤로 읽든 동일한 문자열인 경우를 말합니다. 다만, 팰린드롬 여부를 판단할 때 대소문자의 차이나 알파벳 이외의 문자는 무시하며, 숫자와 문자만을 고려합니다 str = "A man, a plan, a canal: Panama" upperstr = ''.join(c.upper() for c in str if c.isalnum()) reversedstr = "" for i in range(len(upperstr) - 1, -1, -1): reversedstr += upperstr[i] if upperstr == reversedstr: print("true") else: print("false") upperstr = ''.join(c.upper() for..
카테고리 없음
2023. 11. 22. 19:53