Python List 01
Python List 01
Strings
Since strings are arrays, we can loop through the characters in a string, with a for loop.
Example
Loop through the letters in the word "banana":
for x in "banana":
print(x)
String Length
Example
a = "Hello, World!"
print(len(a))
Check String
To check if a certain phrase or character is present in a string, we can use the keyword in.
Example
Check if "free" is present in the following text:
txt = "The best things in life are free!"
print("free" in txt)
Check if NOT
To check if a certain phrase or character is NOT present in a string, we can use the keyword not
in.
Example
Check if "expensive" is NOT present in the following text:
txt = "The best things in life are free!"
print("expensive" not in txt)
Python Booleans
Boolean Values
Example
print(10 > 9)
print(10 == 9)
print(10 < 9)
Example
Print a message based on whether the condition is True or False:
a = 200
b = 33
if b > a:
print("b is greater than a")
else:
print("b is not greater than a")
Evaluate Values and Variables
The bool() function allows you to evaluate any value, and
give you True or False in return
• Example
print(bool("Hello"))
print(bool(15))
,
Most Values are True
In fact, there are not many values that evaluate to False, except empty values, such
as (), [], {}, "“
the number 0, and the value None. And of course the value False evaluates to False.
• Example
• The following will return False:
• bool(False)
bool(None)
bool(0)
bool("")
bool(())
bool([])
bool({})
Functions can Return a Boolean
print(myFunction())
Python Operators
not Reverse the result, returns False if the not(x < 5 and x < 10)
result is true
Python Identity Operators
Identity operators are used to compare the objects, not if they are equal, but if they are actually the same object,
with the same memory location:
is not Returns True if both variables are not the x is not y Try it »
same object
Python Membership Operators
Membership operators are used to test if a sequence is presented in an object:
• List items are indexed and you can access them by referring to the
index number:
• Example
• Print the second item of the list:
thislist = ["apple", "banana", "cherry"]
print(thislist[1])