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

preview_player
Показать описание

In this Python strings tutorial, you'll learn what strings are and the alterations in storing strings in variables. You'll also learn the string function to find the length of a string and how to extract a single character from a string or even a substring. We'll explore the various inbuilt functions in Python that makes it easier to work with strings, concatenate strings and use the format method for doing the same. Finally, we'll write a program to reverse every word in a string. Now, let us get started and understand Python strings in detail.

#PythonTutorial #PythonProgramming #PythonStrings #simplilearn

➡️ About Post Graduate Program In AI And Machine Learning

This AI ML course is designed to enhance your career in AI and ML by demystifying concepts like machine learning, deep learning, NLP, computer vision, reinforcement learning, and more. You'll also have access to 4 live sessions, led by industry experts, covering the latest advancements in AI such as generative modeling, ChatGPT, OpenAI, and chatbots.

✅ Key Features

- Post Graduate Program certificate and Alumni Association membership
- Exclusive hackathons and Ask me Anything sessions by IBM
- 3 Capstones and 25+ Projects with industry data sets from Twitter, Uber, Mercedes Benz, and many more
- Master Classes delivered by Purdue faculty and IBM experts
- Simplilearn's JobAssist helps you get noticed by top hiring companies
- Gain access to 4 live online sessions on latest AI trends such as ChatGPT, generative AI, explainable AI, and more
- Learn about the applications of ChatGPT, OpenAI, Dall-E, Midjourney & other prominent tools

✅ Skills Covered

- ChatGPT
- Generative AI
- Explainable AI
- Generative Modeling
- Statistics
- Python
- Supervised Learning
- Unsupervised Learning
- NLP
- Neural Networks
- Computer Vision
- And Many More…

🔥🔥 Interested in Attending Live Classes? Call Us: IN - 18002127688 / US - +18445327688
Рекомендации по теме
Комментарии
Автор

Your last programme was really nice. :)

komaljaswani
Автор

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

saranrajsermadurai
Автор

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

komaljaswani
Автор

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

milindborkar
Автор

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

helptechnicalvs
Автор

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

visheshgoel
Автор

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

chiragsheth
Автор

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

vennapoosasurendranathredd
Автор

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


a more easier way for the exercise

sharatbalaji
Автор

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

poojabharambe.t_
Автор

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!

SimplilearnOfficial
Автор

I can't see any output of the program

poulamisarkar