Creation and use of strings

--Originally published at My Home

Creating strings is the easiest thing in Python… You just do the following:

kitchen = “Food”

Done… Yep, you already have created a string?

But there are more uses like

strng

srt

This code is to print the hole string, count how many elements does that string have and take a single element of it.

Here, have another tutorial just in case:

#TC101 #Python3 #Strings