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

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

Simplilearn

5 лет назад

28,645 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Street Noober
Street Noober - 08.10.2023 11:20

Crystal clear.... ❤

Ответить
Factobia
Factobia - 17.11.2020 20:03

THANK YOU DIDI
LOVE FROM INDIA

Ответить
vennapoosa Surendra nath reddy
vennapoosa Surendra nath reddy - 30.10.2020 15:06

how to find total no of dfferent char avaliable in given strings

Ответить
Yogesh Ravandale
Yogesh Ravandale - 05.09.2020 08:19

Nice and valuable information

Ответить
Saranraj Sermadurai
Saranraj Sermadurai - 16.08.2020 08:33

Stg = "Thanks for the video"
Print(stg)
😁

Ответить
Chirag Sheth
Chirag Sheth - 18.07.2020 20:46

Madam, you have not used Jupyetr but pycharm? Can you please guide when to use Jupyter & when to use pycharm?

Ответить
pooja bharambe.T_21
pooja bharambe.T_21 - 26.06.2020 07:25

Your tutorial is really very nice and important but I can't see this.

Ответить
Vishesh Goel
Vishesh Goel - 16.04.2020 19:20

How can I delete all the characters in the second string from the first string?

Ответить
Poulami Sarkar
Poulami Sarkar - 16.03.2020 14:47

I can't see any output of the program

Ответить
Komal Jaswani
Komal Jaswani - 27.11.2019 23:23

Your last programme was really nice. :)

Ответить
Komal Jaswani
Komal Jaswani - 27.11.2019 22:52

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=" ")

Ответить
Milind Borkar
Milind Borkar - 14.10.2019 18:20

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

Ответить
Daisy Cleetus
Daisy Cleetus - 29.08.2019 03:58

Actually i can't see anything

Ответить
sharat balaji
sharat balaji - 28.07.2019 09:14

x="Welcome to Simplilearn"
z=""
for i in x.split(" "):
z=z+" "+i[::-1]
print(z)


a more easier way for the exercise

Ответить
Help Technical VS
Help Technical VS - 13.12.2018 19:14

Some zooming this word
Word are very small latter
Video is useful

Ответить
Simplilearn
Simplilearn - 13.12.2018 18:51

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!

Ответить