Answers for "find char in list python"

5

how to print a char of element in list in pyhton

#declaring list
myList=[12,'Hello','World!']
#for strings
print(myList[1][2]) # output --> l
#for numbers
temp=str(myList[0])
print(temp[1]) # output --> 2
Posted by: Guest on September-15-2020
1

python find string in list

list1 = ["a", "b", "c"]

isBInList = "b" in list1 # True
Posted by: Guest on August-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language