Python program to print a string, extract characters from the string

Printing string, separating characters from the string in Python: Here, we will figure out how to print a total string, how to get to characters, characters from explicit lists from the string in python?

In this program – we will figure out how might we complete string, print explicit characters, print a scope of the characters, print string on numerous occasions (utilizing * administrator), print various stings by linking them and so on.

Syntax to print string in various manners:

    print (string)          	# printing complete string
    print (string[i])       	# printing ith element of string
    print (string[i], string[j])# printing ith and jth elements
    print (string[i:j])     	# printing elements from ith index to jth index
    print (string[i:])      	# printing all elements from ith index
    print (string * 2)  	# printing string two times
    print (string1 + string2) 	# printing concatenated string1 & string2

Python code to print string characters:

Here, we have two strings str1 and str2 and we are printing components in the various manners.

# python program to demonstrate example of string

# declaring & initializing two strings
str1 = "JustTchReview"
str2 = ".com"

print (str1)          		# printing complete str1
print (str1[0])       		# printing 0th (first) elements of str1
print (str1[0], str1[1])	# printing first & second elements
print (str1[2:5])     		# printing elements from 2nd to 5th index
print (str1[1:])      		# printing all elements from 1st index
print (str2 * 2)  		# printing str2 two times
print (str1 + str2) 		# printing concatenated str1 & str2

Output:

JustTechReview
J
J R
ust
ustTechReview
.com.com
JustTechReview.com

Leave a Comment

error: Alert: Content is protected!!