Python Programming Tutorial #15 - Using .count() and .find()

preview_player
Показать описание
This is the 15th video in my python programming series. In today's video I talk about some new string methods in python .count and .find).

Please LIKE and SUBSCRIBE for more content daily!

Video Tags:
python,python tutorial,python language,python full course,python course,learn python,learn python programming,python tutorial for beginners,python tutorial 2018,python programming tutorial,python programming language,software development,programming tutorial,tech with tim
Рекомендации по теме
Комментарии
Автор

I really appreciate your tutorials. They are fun to watch and I've learned a lot! Thank you so much

KingPaul
Автор

this tutorial is the best i have seen in a while in this subject, so simple and easy to understand. well done (:

niv
Автор

Its amazing how far we have come from this.

sajayrrr
Автор

Awesome tutorial. Glad I found your channel. God bless and prosper you. Thank you.

jloo
Автор

Nice video
Watched at 2x
Meet you in next one

eswarspython
Автор

Awsome man, easy to understand. Thank you

ultimaterelaxationfocusmus
Автор

Hi Tim, I'm having problem find the positions of the alphabets. Could you help me out?


x = input("Enter a letter: ")
y = "THE TRADE UNION GENERAL SECRETARY"
x = x.upper()
for x in y:
print (y.find(x))





Thanks!

yongshengpeng
Автор

.find() can only be used on strings (not on lists).

domenicogiannini