Demonstrates the len() function and the in operator : String In : String PYTHON examples


PYTHON examples » String » String In »

 

Demonstrates the len() function and the in operator


 

message = "this is a test"

print "nThe length of your message is:", len(message)

print "nThe most common letter in the English language, 'e',",
if "e" in message:
    print "is in your message."
else:
    print "is not in your message."

   
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo String
» String In