Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python check if all caps

if some_text.isupper():
  print ("Word is all upper case")
else:
  print ("Word is not all upper case")
Comment

how to check if text is in upper case in python

# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A

Text = "python is easy"
print(Text.isupper())
Comment

PREVIOUS NEXT
Code Example
Python :: how to create a tuple from csv python 
Python :: python keyboardinterrupt 
Python :: django createmany 
Python :: regex findall 
Python :: keras linear regression 
Python :: pandas name of day 
Python :: python how to convert csv to array 
Python :: multinomial regression scikit learn 
Python :: Plot regression line from sklearn 
Python :: mongodb get first 10 records 
Python :: create dict from two columns pandas 
Python :: assert keyword python 
Python :: pandas sort by columns 
Python :: plt.legend( 
Python :: fillna with mode pandas 
Python :: registration of path in urls.py for your apps for views 
Python :: python sqlite 
Python :: create a python3 virtual environment 
Python :: rotate 90 degrees clockwise counter python 
Python :: input and ouput array in python 
Python :: two for loops in list comprehension 
Python :: change colors markdown pyhton 
Python :: converting decimal to hex in python 
Python :: python file open 
Python :: tkinter margin 
Python :: file searching in python 
Python :: Send GIF in Embed discord.py 
Python :: TypeError: strptime() argument 1 must be str, not Series 
Python :: tensor get value 
Python :: pil crop image 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =