파이썬에서 문자열을 대문자로 변경하는 데 문제가 있습니다. 내 연구에서 얻었 string.ascii_uppercase
지만 작동하지 않습니다.
다음 코드 :
>>s = 'sdsd'
>>s.ascii_uppercase
이 오류 메시지를 제공합니다 :
Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: 'str' object has no attribute 'ascii_uppercase'
내 질문은 : 어떻게 파이썬에서 문자열을 대문자로 변환 할 수 있습니까?
1
이것을하는 쉬운 튜토리얼 : dreamsyssoft.com/python-scripting-tutorial/strings-tutorial.php
—
Triton Man