Strings in python
A string is a series of characters, they are mostly used to display text.
To define a string simply type text between quotes. Python accepts single, double and triple quotes.
String input and output
To output text (string) to the screen:
To get text from keyboard:
If you use an old Python version (2.x), you need to use:
To test your version:
python –version
python –version
String Comparison
To test if two strings are equal use the equality operator (==).
To test if two strings are not equal use the inequality operator (!=)
Comments
Post a Comment