We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cad53e commit 7183064Copy full SHA for 7183064
Doc/library/stdtypes.rst
@@ -1782,6 +1782,16 @@ expression support in the :mod:`re` module).
1782
Return true if all cased characters [4]_ in the string are uppercase and
1783
there is at least one cased character, false otherwise.
1784
1785
+ >>> 'BANANA'.isupper()
1786
+ True
1787
+ >>> 'banana'.isupper()
1788
+ False
1789
+ >>> 'baNana'.isupper()
1790
1791
+ >>> ' '.isupper()
1792
1793
+
1794
1795
1796
.. method:: str.join(iterable)
1797
0 commit comments