Python Strings | Strings In Python | Python Tutorial | Python Programming | Simplilearn

  Рет қаралды 28,922

Simplilearn

Simplilearn

Күн бұрын

Пікірлер: 35
@SimplilearnOfficial
@SimplilearnOfficial 3 жыл бұрын
🔥 Purdue Post Graduate Program In AI And Machine Learning: www.simplilearn.com/pgp-ai-machine-learning-certification-training-course?QGLNQwfTO2w& 🔥IIT Kanpur Professional Certificate Course In AI And Machine Learning (India Only): www.simplilearn.com/iitk-professional-certificate-course-ai-machine-learning?QGLNQwfTO2w& 🔥AI & Machine Learning Bootcamp(US Only): www.simplilearn.com/ai-machine-learning-bootcamp?QGLNQwfTO2w& 🔥AI Engineer Masters Program (Discount Code - YTBE15): www.simplilearn.com/masters-in-artificial-intelligence?QGLNQwfTO2w& 🔥 Professional Certificate Program In Generative AI And Machine Learning (India Only) - www.simplilearn.com/iitr-generative-ai-machine-learning-program?QGLNQwfTO2w&
@komaljaswani7497
@komaljaswani7497 4 жыл бұрын
Your last programme was really nice. :)
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
Thanks a lot!
@factobia7059
@factobia7059 3 жыл бұрын
THANK YOU DIDI LOVE FROM INDIA
@SimplilearnOfficial
@SimplilearnOfficial 3 жыл бұрын
Our pleasure 😊
@milindborkar8901
@milindborkar8901 4 жыл бұрын
Input two strings, first string contain a word and in second string contain a some letter from first string. find the second string is sub string of first without using any inbuilt function . immediate reply
@saranrajsermadurai7634
@saranrajsermadurai7634 4 жыл бұрын
Stg = "Thanks for the video" Print(stg) 😁
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
Good one!
@komaljaswani7497
@komaljaswani7497 4 жыл бұрын
Thanks a lot for this video! I wanted to write a programme to find the initials of a name in python but was not getting function like LEFT,RIGHT or MID as in other programmes. Then I thought of a function giving me position of a character in a string like index but dint know python too has such function. tried to use INDEX(String) but it dint work. Post seeing your video, I used split function to get my initials. It helped me a lot! Thanks :) The programme is as follows: name = input("Enter a name") print ("The initials of",name, "are") list=name.split(" ") for i in list: print (i[0].upper(),end=" ") Also this programme just gives you initials of a 2 words name because index just gives u first occurence: name = input("Enter a name(only first name & last name:)") print ("The initials of",name, "are") print (name[0],end=" ") for i in name: if i==" ": c=name.index(" ") print (name[c+1],end=" ")
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
Great work! If you want to learn more, you can check out this playlist: kzbin.info/www/bejne/qHzEf2uAeJxjf9k And don't forget to like, share and subscribe to our channel! :)
@streetnoober4011
@streetnoober4011 11 ай бұрын
Crystal clear.... ❤
@SimplilearnOfficial
@SimplilearnOfficial 11 ай бұрын
We're thrilled to have been a part of your learning experience, and we hope that you feel confident and prepared to take on new challenges in your field. If you're interested in further expanding your knowledge, check out our course offerings in the description box.
@yogeshravandale3746
@yogeshravandale3746 4 жыл бұрын
Nice and valuable information
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!
@yogeshravandale3746
@yogeshravandale3746 4 жыл бұрын
@@SimplilearnOfficial yes offcourse
@helptechnicalvs
@helptechnicalvs 5 жыл бұрын
Some zooming this word Word are very small latter Video is useful
@SimplilearnOfficial
@SimplilearnOfficial 5 жыл бұрын
Hey Vikram, thank you for watching our video and for the honest feedback. We will definitely look into this. Do subscribe, like and share to stay connected with us. Cheers :)
@visheshgoel7116
@visheshgoel7116 4 жыл бұрын
How can I delete all the characters in the second string from the first string?
@chiragsheth4936
@chiragsheth4936 4 жыл бұрын
Madam, you have not used Jupyetr but pycharm? Can you please guide when to use Jupyter & when to use pycharm?
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
"Hi Chirag, Jupyter Notebook has become a leading Python IDE that is part of Anaconda distribution. It is the popularly used for learning Python. You can also use PyCharm for this purpose and PyCharm supports Anaconda as well. Here is a video that will help you learn about PyCharm: kzbin.info/www/bejne/nnycXpKpapp2eLs"
@vennapoosasurendranathredd1027
@vennapoosasurendranathredd1027 3 жыл бұрын
how to find total no of dfferent char avaliable in given strings
@SimplilearnOfficial
@SimplilearnOfficial 3 жыл бұрын
"Hi, Convert the string into a set. That will return the number of unique characters in a string."
@poojabharambe.t_2131
@poojabharambe.t_2131 4 жыл бұрын
Your tutorial is really very nice and important but I can't see this.
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
Sorry for that! Could you please let us know what went wrong?
@sharatbalaji4929
@sharatbalaji4929 5 жыл бұрын
x="Welcome to Simplilearn" z="" for i in x.split(" "): z=z+" "+i[::-1] print(z) a more easier way for the exercise
@komaljaswani7497
@komaljaswani7497 4 жыл бұрын
I dint get u!! which exercise u r talking about?
@daisycleetus3549
@daisycleetus3549 5 жыл бұрын
Actually i can't see anything
@SimplilearnOfficial
@SimplilearnOfficial 5 жыл бұрын
Hi Daisy, could you be more specific with your query?
@daisycleetus3549
@daisycleetus3549 5 жыл бұрын
What is written in the program is not that visible..
@SimplilearnOfficial
@SimplilearnOfficial 5 жыл бұрын
You may have to increase the resolution to 720P or 1080P. Thanks.
@poulamisarkar8185
@poulamisarkar8185 4 жыл бұрын
I can't see any output of the program
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
Could you please elaborate the issue a little more? Thanks.
@SimplilearnOfficial
@SimplilearnOfficial 5 жыл бұрын
Do you have any questions on this topic? Please share your feedback in the comment section below and we'll have our experts answer it for you. Thanks watching the video. Cheers!
@komaljaswani7497
@komaljaswani7497 4 жыл бұрын
Index & split functions helped me a lot! Thanks :)
@SimplilearnOfficial
@SimplilearnOfficial 4 жыл бұрын
You are welcome!
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 303 М.
Фейковый воришка 😂
00:51
КАРЕНА МАКАРЕНА
Рет қаралды 6 МЛН
大家都拉出了什么#小丑 #shorts
00:35
好人小丑
Рет қаралды 81 МЛН
How to Use Strings in Python - Python Tutorial for Beginners
16:46
Programming with Mosh
Рет қаралды 231 М.
Python variables for beginners ❎
13:31
Bro Code
Рет қаралды 191 М.
While loops in Python are easy ♾️
6:58
Bro Code
Рет қаралды 352 М.
ALL 47 STRING METHODS IN PYTHON EXPLAINED
23:34
Indently
Рет қаралды 129 М.
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 466 М.
Python Data Classes Are AMAZING! Here's Why
16:11
Tech With Tim
Рет қаралды 78 М.
Logical operators in Python are easy 🔣
5:04
Bro Code
Рет қаралды 88 М.
f-Strings in Python | Python Tutorials for Beginners #lec22
9:47
Jenny's Lectures CS IT
Рет қаралды 95 М.