I have problem in changing a string into uppercase with Python. In my research, I got string.ascii_uppercase
but it doesn't work.
The following code:
>>s = 'sdsd'
>>s.ascii_uppercase
Gives this error message:
Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: 'str' object has no attribute 'ascii_uppercase'
My question is: how can I convert a string into uppercase in Python?
To get upper case version of a string you can use
str.upper
:On the other hand
string.ascii_uppercase
is a string containing all ASCII letters in upper case:For questions on simple string manipulation the
dir
built-in function comes in handy. It gives you, among others, a list of methods of the argument, e.g.,dir(s)
returns a list containingupper
.See String Methods.
for making uppercase from lowercase to upper just use
where
"string"
is your string that you want to convert uppercasefor this question concern it will like this:
for making lowercase from uppercase string just use
where
"string"
is your string that you want to convert lowercasefor this question concern it will like this:
If you want to make your whole string variable use
to make the string upper case -- just simply type
simple and easy! you can do the same to make it lower too
etc.