Description stringlengths 9 105 | Link stringlengths 45 135 | Code stringlengths 10 26.8k | Test_Case stringlengths 9 202 | Merge stringlengths 63 27k |
|---|---|---|---|---|
Python program to find the character position of Kth word from a list of strings | https://www.geeksforgeeks.org/python-program-to-find-the-character-position-of-kth-word-from-a-list-of-strings/ | # Python3 code to demonstrate working of
# Word Index for K position in Strings List
# Using next() + zip() + count()
from itertools import count
# initializing list
test_list = ["geekforgeeks", "is", "best", "for", "geeks"]
# printing original list
print("The original list is : " + str(test_list))
# initializing K... |
#Output : The original list is : ['geekforgeeks', 'is', 'best', 'for', 'geeks'] | Python program to find the character position of Kth word from a list of strings
# Python3 code to demonstrate working of
# Word Index for K position in Strings List
# Using next() + zip() + count()
from itertools import count
# initializing list
test_list = ["geekforgeeks", "is", "best", "for", "geeks"]
# printing ... |
Python program to find the character position of Kth word from a list of strings | https://www.geeksforgeeks.org/python-program-to-find-the-character-position-of-kth-word-from-a-list-of-strings/ | # Python3 code to demonstrate working of
# Word Index for K position in Strings List
# Using nested loop
# initializing list
test_list = ["geekforgeeks", "is", "best", "for", "geeks"]
# printing original list
print("The original list is : " + str(test_list))
# initializing K
K = 20
# initializing index counter
idx ... |
#Output : The original list is : ['geekforgeeks', 'is', 'best', 'for', 'geeks'] | Python program to find the character position of Kth word from a list of strings
# Python3 code to demonstrate working of
# Word Index for K position in Strings List
# Using nested loop
# initializing list
test_list = ["geekforgeeks", "is", "best", "for", "geeks"]
# printing original list
print("The original list is ... |
Python - Right and Left Shift characters in String | https://www.geeksforgeeks.org/python-right-and-left-shift-characters-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using String multiplication + string slicing
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initializing right rot
r_rot = 7
# Initializing left rot
l_r... |
#Output : The original string is : geeksforgeeks | Python - Right and Left Shift characters in String
# Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using String multiplication + string slicing
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initiali... |
Python - Right and Left Shift characters in String | https://www.geeksforgeeks.org/python-right-and-left-shift-characters-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using % operator and string slicing
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initializing right rot
r_rot = 7
# Initializing left rot
l_rot = 3
#... |
#Output : The original string is : geeksforgeeks | Python - Right and Left Shift characters in String
# Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using % operator and string slicing
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initializing righ... |
Python - Right and Left Shift characters in String | https://www.geeksforgeeks.org/python-right-and-left-shift-characters-in-string/?ref=leftbar-rightbar | def left_shift_string(string, n):
char_list = list(string)
rotated_list = char_list[n:] + char_list[:n]
rotated_string = "".join(rotated_list)
return rotated_string
def right_shift_string(string, n):
char_list = list(string)
rotated_list = char_list[-n:] + char_list[:-n]
rotated_string = "... |
#Output : The original string is : geeksforgeeks | Python - Right and Left Shift characters in String
def left_shift_string(string, n):
char_list = list(string)
rotated_list = char_list[n:] + char_list[:n]
rotated_string = "".join(rotated_list)
return rotated_string
def right_shift_string(string, n):
char_list = list(string)
rotated_list = c... |
Python - Right and Left Shift characters in String | https://www.geeksforgeeks.org/python-right-and-left-shift-characters-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using String multiplication + string slicing
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initializing right rot
r_rot = 7
# Initializing left rot
l_r... |
#Output : The original string is : geeksforgeeks | Python - Right and Left Shift characters in String
# Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using String multiplication + string slicing
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initiali... |
Python - Right and Left Shift characters in String | https://www.geeksforgeeks.org/python-right-and-left-shift-characters-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using list comprehension and string concatenation
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Initializing right rot
r_rot = 7
# Initializing left ro... |
#Output : The original string is : geeksforgeeks | Python - Right and Left Shift characters in String
# Python3 code to demonstrate working of
# Right and Left Shift characters in String
# Using list comprehension and string concatenation
# Initializing string
test_str = "geeksforgeeks"
# Printing original string
print("The original string is : " + test_str)
# Ini... |
Python | Exceptional Split in String | https://www.geeksforgeeks.org/python-exceptional-split-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Exceptional Split in String
# Using loop + split()
# initializing string
test_str = "gfg, is, (best, for), geeks"
# printing original string
print("The original string is : " + test_str)
# Exceptional Split in String
# Using loop + split()
temp = ""
res = []
check = 0
for e... |
#Output : The original string is : gfg, is, (best, for), geeks | Python | Exceptional Split in String
# Python3 code to demonstrate working of
# Exceptional Split in String
# Using loop + split()
# initializing string
test_str = "gfg, is, (best, for), geeks"
# printing original string
print("The original string is : " + test_str)
# Exceptional Split in String
# Using loop + split... |
Python | Exceptional Split in String | https://www.geeksforgeeks.org/python-exceptional-split-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Exceptional Split in String
# Using regex()
import re
# initializing string
test_str = "gfg, is, (best, for), geeks"
# printing original string
print("The original string is : " + test_str)
# Exceptional Split in String
# Using regex()
res = re.split(r", (?!\S\)|\()", test_... |
#Output : The original string is : gfg, is, (best, for), geeks | Python | Exceptional Split in String
# Python3 code to demonstrate working of
# Exceptional Split in String
# Using regex()
import re
# initializing string
test_str = "gfg, is, (best, for), geeks"
# printing original string
print("The original string is : " + test_str)
# Exceptional Split in String
# Using regex()
r... |
Python | Exceptional Split in String | https://www.geeksforgeeks.org/python-exceptional-split-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Exceptional Split in String
# Using str.split() and list comprehension
# initializing string
test_str = "gfg, is, (best, for), geeks"
# printing original string
print("The original string is : " + test_str)
# Exceptional Split in String
# Using str.split() and list comprehe... |
#Output : The original string is : gfg, is, (best, for), geeks | Python | Exceptional Split in String
# Python3 code to demonstrate working of
# Exceptional Split in String
# Using str.split() and list comprehension
# initializing string
test_str = "gfg, is, (best, for), geeks"
# printing original string
print("The original string is : " + test_str)
# Exceptional Split in String
... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | def split_on_vowels(test_str):
vowels = "aeiouAEIOU"
result = []
temp = ""
for char in test_str:
if char in vowels:
if temp != "":
result.append(temp)
temp = ""
else:
temp += char
if temp != "":
result.append(temp)
r... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
def split_on_vowels(test_str):
vowels = "aeiouAEIOU"
result = []
temp = ""
for char in test_str:
if char in vowels:
if temp != "":
result.append(temp)
temp = ""
else:
temp += char
if temp != "":... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | # Python3 code to demonstrate working of
# Split String on vowels
# Using split() + regex
import re
# initializing strings
test_str = "GFGaBste4oCS"
# printing original string
print("The original string is : " + str(test_str))
# splitting on vowels
# constructing vowels list
# and separating using | operator
res = r... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
# Python3 code to demonstrate working of
# Split String on vowels
# Using split() + regex
import re
# initializing strings
test_str = "GFGaBste4oCS"
# printing original string
print("The original string is : " + str(test_str))
# splitting on vowels
# constructing vowels list
# and s... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | # Python3 code to demonstrate working of
# Split String on vowels
# initializing strings
test_str = "GFGaBste4oCS"
# printing original string
print("The original string is : " + str(test_str))
# splitting on vowels
vow = "aeiouAEIOU"
for i in test_str:
if i in vow:
test_str = test_str.replace(i, "*")
res... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
# Python3 code to demonstrate working of
# Split String on vowels
# initializing strings
test_str = "GFGaBste4oCS"
# printing original string
print("The original string is : " + str(test_str))
# splitting on vowels
vow = "aeiouAEIOU"
for i in test_str:
if i in vow:
test_... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | # Python3 code to demonstrate working of
# Split String on vowels
# initializing strings
test_str = "GFGaBste4oCS"
# printing original string
print("The original string is : " + str(test_str))
# splitting on vowels
x = [97, 101, 105, 111, 117, 65, 69, 73, 79, 85]
for i in test_str:
if ord(i) in x:
test_s... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
# Python3 code to demonstrate working of
# Split String on vowels
# initializing strings
test_str = "GFGaBste4oCS"
# printing original string
print("The original string is : " + str(test_str))
# splitting on vowels
x = [97, 101, 105, 111, 117, 65, 69, 73, 79, 85]
for i in test_str:
... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | import operator as op
def split_on_vowels(test_str):
vowels = "aeiouAEIOU"
result = []
temp = ""
for char in test_str:
if op.countOf(vowels, char) > 0:
if temp != "":
result.append(temp)
temp = ""
else:
temp += char
if temp !=... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
import operator as op
def split_on_vowels(test_str):
vowels = "aeiouAEIOU"
result = []
temp = ""
for char in test_str:
if op.countOf(vowels, char) > 0:
if temp != "":
result.append(temp)
temp = ""
else:
... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | import itertools
# Define the string to be split
test_str = "GFGaBste4oCS"
# Define the vowels to split the string on
vowels = "aeiouAEIOU"
# Print the original string
print("The original string is:", test_str)
# Use itertools.groupby to group adjacent characters in test_str based on if they are in vowels
res = [
... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
import itertools
# Define the string to be split
test_str = "GFGaBste4oCS"
# Define the vowels to split the string on
vowels = "aeiouAEIOU"
# Print the original string
print("The original string is:", test_str)
# Use itertools.groupby to group adjacent characters in test_str based ... |
Python - Split String on Vowels | https://www.geeksforgeeks.org/python-split-string-on-vowels/ | # initializing string
test_str = "GFGaBste4oCS"
# create a translation table that replaces vowels with spaces
trans_table = str.maketrans("aeiouAEIOU", " " * 10)
# split the string on spaces
res = test_str.translate(trans_table).split()
# printing result
print("The splitted string : " + str(res))
# This code is cont... |
#Output : ['GFG', 'Bst', 'f', 'r', 'g', 'ks'] | Python - Split String on Vowels
# initializing string
test_str = "GFGaBste4oCS"
# create a translation table that replaces vowels with spaces
trans_table = str.maketrans("aeiouAEIOU", " " * 10)
# split the string on spaces
res = test_str.translate(trans_table).split()
# printing result
print("The splitted string :... |
Python - Mirror Image of String | https://www.geeksforgeeks.org/python-mirror-image-of-string/ | # Python3 code to demonstrate working of
# Mirror Image of String
# Using Mirror Image of String
# initializing strings
test_str = "void"
# printing original string
print("The original string is : " + str(test_str))
# initializing mirror dictionary
mir_dict = {"b": "d", "d": "b", "i": "i", "o": "o", "v": "v", "w": "... |
#Output : The original string is : void | Python - Mirror Image of String
# Python3 code to demonstrate working of
# Mirror Image of String
# Using Mirror Image of String
# initializing strings
test_str = "void"
# printing original string
print("The original string is : " + str(test_str))
# initializing mirror dictionary
mir_dict = {"b": "d", "d": "b", "i... |
Python - Mirror Image of String | https://www.geeksforgeeks.org/python-mirror-image-of-string/ | # Python3 code to demonstrate working of
# Mirror Image of String
# Using String Slicing and Lookup Dictionary
# Define input string
test_str = "void"
# Define mirror dictionary
mir_dict = {"b": "d", "d": "b", "i": "i", "o": "o", "v": "v", "w": "w", "x": "x"}
# Reverse the input string
rev_str = test_str[::-1]
# In... |
#Output : The original string is : void | Python - Mirror Image of String
# Python3 code to demonstrate working of
# Mirror Image of String
# Using String Slicing and Lookup Dictionary
# Define input string
test_str = "void"
# Define mirror dictionary
mir_dict = {"b": "d", "d": "b", "i": "i", "o": "o", "v": "v", "w": "w", "x": "x"}
# Reverse the input str... |
Python - Replace multiple words with K | https://www.geeksforgeeks.org/python-replace-multiple-words-with-k/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Replace multiple words with K
# Using join() + split() + list comprehension
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing word list
word_list = ["best", ... |
#Output : The original string is : Geeksforgeeks is best for geeks and CS | Python - Replace multiple words with K
# Python3 code to demonstrate working of
# Replace multiple words with K
# Using join() + split() + list comprehension
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# ini... |
Python - Replace multiple words with K | https://www.geeksforgeeks.org/python-replace-multiple-words-with-k/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Replace multiple words with K
# Using regex + join()
import re
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing word list
word_list = ["best", "CS", "for"]
... |
#Output : The original string is : Geeksforgeeks is best for geeks and CS | Python - Replace multiple words with K
# Python3 code to demonstrate working of
# Replace multiple words with K
# Using regex + join()
import re
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing wor... |
Python - Replace multiple words with K | https://www.geeksforgeeks.org/python-replace-multiple-words-with-k/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Replace multiple words with K
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing word list
word_list = ["best", "CS", "for"]
# initializing replace word
rep... |
#Output : The original string is : Geeksforgeeks is best for geeks and CS | Python - Replace multiple words with K
# Python3 code to demonstrate working of
# Replace multiple words with K
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing word list
word_list = ["best", "CS"... |
Python - Replace multiple words with K | https://www.geeksforgeeks.org/python-replace-multiple-words-with-k/?ref=leftbar-rightbar | import re
def multiple_replace(text, word_dict):
# create a regular expression pattern from the dictionary keys
pattern = re.compile("|".join(map(re.escape, word_dict.keys())))
# use re.sub to replace the keys with values in the text
return pattern.sub(lambda x: word_dict[x.group(0)], text)
# initia... |
#Output : The original string is : Geeksforgeeks is best for geeks and CS | Python - Replace multiple words with K
import re
def multiple_replace(text, word_dict):
# create a regular expression pattern from the dictionary keys
pattern = re.compile("|".join(map(re.escape, word_dict.keys())))
# use re.sub to replace the keys with values in the text
return pattern.sub(lambda x... |
Python - Replace multiple words with K | https://www.geeksforgeeks.org/python-replace-multiple-words-with-k/?ref=leftbar-rightbar | from functools import reduce
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing word list
word_list = ["best", "CS", "for"]
# initializing replace word
repl_wrd = "gfg"
# Replace multiple words with ... |
#Output : The original string is : Geeksforgeeks is best for geeks and CS | Python - Replace multiple words with K
from functools import reduce
# initializing string
test_str = "Geeksforgeeks is best for geeks and CS"
# printing original string
print("The original string is : " + str(test_str))
# initializing word list
word_list = ["best", "CS", "for"]
# initializing replace word
repl_wr... |
Python - Replace Different characters in String at Once | https://www.geeksforgeeks.org/python-replace-different-characters-in-string-at-once/ | # Python3 code to demonstrate working of
# Replace Different characters in String at Once
# using join() + generator expression
# initializing string
test_str = "geeksforgeeks is best"
# printing original String
print("The original string is : " + str(test_str))
# initializing mapping dictionary
map_dict = {"e": "1"... | #Input : test_str = 'geeksforgeeks is best', map_dict = {'e':'1', 'b':'6'}??????
#Output : g11ksforg11ks is 61 | Python - Replace Different characters in String at Once
# Python3 code to demonstrate working of
# Replace Different characters in String at Once
# using join() + generator expression
# initializing string
test_str = "geeksforgeeks is best"
# printing original String
print("The original string is : " + str(test_str... |
Python - Replace Different characters in String at Once | https://www.geeksforgeeks.org/python-replace-different-characters-in-string-at-once/ | # Python3 code to demonstrate working of
# Replace Different characters in String at Once
# using regex + lambda
import re
# initializing string
test_str = "geeksforgeeks is best"
# printing original String
print("The original string is : " + str(test_str))
# initializing mapping dictionary
map_dict = {"e": "1", "b"... | #Input : test_str = 'geeksforgeeks is best', map_dict = {'e':'1', 'b':'6'}??????
#Output : g11ksforg11ks is 61 | Python - Replace Different characters in String at Once
# Python3 code to demonstrate working of
# Replace Different characters in String at Once
# using regex + lambda
import re
# initializing string
test_str = "geeksforgeeks is best"
# printing original String
print("The original string is : " + str(test_str))
#... |
Python - Replace Different characters in String at Once | https://www.geeksforgeeks.org/python-replace-different-characters-in-string-at-once/ | # Python3 code to demonstrate working of
# Replace Different characters in String at Once
# initializing string
test_str = "geeksforgeeks is best"
# printing original String
print("The original string is : " + str(test_str))
# initializing mapping dictionary
map_dict = {"e": "1", "b": "6", "i": "4"}
for i in test_st... | #Input : test_str = 'geeksforgeeks is best', map_dict = {'e':'1', 'b':'6'}??????
#Output : g11ksforg11ks is 61 | Python - Replace Different characters in String at Once
# Python3 code to demonstrate working of
# Replace Different characters in String at Once
# initializing string
test_str = "geeksforgeeks is best"
# printing original String
print("The original string is : " + str(test_str))
# initializing mapping dictionary
... |
Python - Replace Different characters in String at Once | https://www.geeksforgeeks.org/python-replace-different-characters-in-string-at-once/ | # initializing string
test_str = "geeksforgeeks is best"
# initializing mapping dictionary
map_dict = {"e": "1", "b": "6", "i": "4"}
# using list comprehension
new_str = "".join([map_dict.get(char, char) for char in test_str])
# printing result
print("The original string is : " + str(test_str))
print("The converted ... | #Input : test_str = 'geeksforgeeks is best', map_dict = {'e':'1', 'b':'6'}??????
#Output : g11ksforg11ks is 61 | Python - Replace Different characters in String at Once
# initializing string
test_str = "geeksforgeeks is best"
# initializing mapping dictionary
map_dict = {"e": "1", "b": "6", "i": "4"}
# using list comprehension
new_str = "".join([map_dict.get(char, char) for char in test_str])
# printing result
print("The ori... |
Python - Replace Different characters in String at Once | https://www.geeksforgeeks.org/python-replace-different-characters-in-string-at-once/ | # Importing reduce from functools
from functools import reduce
# Initializing the string
test_str = "geeksforgeeks is best"
# Initializing mapping dictionary
map_dict = {"e": "1", "b": "6", "i": "4"}
# Using reduce to replace the characters in the string
# lambda function checks if the character from dictionary is p... | #Input : test_str = 'geeksforgeeks is best', map_dict = {'e':'1', 'b':'6'}??????
#Output : g11ksforg11ks is 61 | Python - Replace Different characters in String at Once
# Importing reduce from functools
from functools import reduce
# Initializing the string
test_str = "geeksforgeeks is best"
# Initializing mapping dictionary
map_dict = {"e": "1", "b": "6", "i": "4"}
# Using reduce to replace the characters in the string
# la... |
Python | Multiple indices Replace in String | https://www.geeksforgeeks.org/python-multiple-indices-replace-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Multiple indices Replace in String
# Using loop + join()
# initializing string
test_str = "geeksforgeeks is best"
# printing original string
print("The original string is : " + test_str)
# initializing list
test_list = [2, 4, 7, 10]
# initializing repl char
repl_char = "*"... |
#Output : The original string is : geeksforgeeks is best | Python | Multiple indices Replace in String
# Python3 code to demonstrate working of
# Multiple indices Replace in String
# Using loop + join()
# initializing string
test_str = "geeksforgeeks is best"
# printing original string
print("The original string is : " + test_str)
# initializing list
test_list = [2, 4, 7, 1... |
Python | Multiple indices Replace in String | https://www.geeksforgeeks.org/python-multiple-indices-replace-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Multiple indices Replace in String
# Using list comprehension + join()
# initializing string
test_str = "geeksforgeeks is best"
# printing original string
print("The original string is : " + test_str)
# initializing list
test_list = [2, 4, 7, 10]
# initializing repl char
r... |
#Output : The original string is : geeksforgeeks is best | Python | Multiple indices Replace in String
# Python3 code to demonstrate working of
# Multiple indices Replace in String
# Using list comprehension + join()
# initializing string
test_str = "geeksforgeeks is best"
# printing original string
print("The original string is : " + test_str)
# initializing list
test_list... |
Python | Multiple indices Replace in String | https://www.geeksforgeeks.org/python-multiple-indices-replace-in-string/?ref=leftbar-rightbar | test_str = "geeksforgeeks is best"
test_list = [2, 4, 7, 10]
repl_char = "*"
res = "".join(
map(lambda x: repl_char if x[0] in test_list else x[1], enumerate(test_str))
)
print("The String after performing replace : " + str(res)) |
#Output : The original string is : geeksforgeeks is best | Python | Multiple indices Replace in String
test_str = "geeksforgeeks is best"
test_list = [2, 4, 7, 10]
repl_char = "*"
res = "".join(
map(lambda x: repl_char if x[0] in test_list else x[1], enumerate(test_str))
)
print("The String after performing replace : " + str(res))
#Output : The original string is : geek... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Using loop + strip()
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list))
# Remove multiple empty spaces from string List
# Usi... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Using loop + strip()
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(t... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Using list comprehension + strip()
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list))
# Remove multiple empty spaces from str... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Using list comprehension + strip()
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list ... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Using find()
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list))
# Remove multiple empty spaces from string List
# Using find(... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Using find()
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list))
res = list(filter(lambda x: x[0].lower() != x[0].upper(), test_list))
# prin... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list))
res = list(f... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# initializing list
import itertools
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_list))
res = list(itertools.filterfalse(lambda x: x[0].upper() == ... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# initializing list
import itertools
test_list = ["gfg", " ", " ", "is", " ", "best"]
# printing original list
print("The original list is : " + str(test_li... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# Printing original list
print("The original list is : " + str(test_list))
# Remove multiple empty spaces from string List
res = [ele for ele in test_list if no... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# Printing original list
print("The original list is : " + str(test_list))
# Remove multiple em... |
Python - Ways to remove multiple empty spaces from string list | https://www.geeksforgeeks.org/python-ways-to-remove-multiple-empty-spaces-from-string-list/?ref=leftbar-rightbar | import re
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# Printing original list
print("The original list is : " + str(test_list))
string = "".join(test_list)
# Remove multiple empty spaces from string Lis... |
#Output : The original list is : ['gfg', ' ', ' ', 'is', ' ', 'best'] | Python - Ways to remove multiple empty spaces from string list
import re
# Python3 code to demonstrate working of
# Remove multiple empty spaces from string List
# Initializing list
test_list = ["gfg", " ", " ", "is", " ", "best"]
# Printing original list
print("The original list is : " + str(test_list))
string = ... |
Python | Remove punctuation from string | https://www.geeksforgeeks.org/python-remove-punctuation-from-string/?ref=leftbar-rightbar | import string??????test_str = 'Gfg, is best: for ! Geeks ;'??????test_str = test_str.translate????????????????????????(str.maketrans('', '', string.punc |
#Output : Gfg is best for Geeks | Python | Remove punctuation from string
import string??????test_str = 'Gfg, is best: for ! Geeks ;'??????test_str = test_str.translate????????????????????????(str.maketrans('', '', string.punc
#Output : Gfg is best for Geeks
[END] |
Python | Remove punctuation from string | https://www.geeksforgeeks.org/python-remove-punctuation-from-string/?ref=leftbar-rightbar | # initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# initializing punctuations string
punc = """!()-[]{};:'"\,<>./?@#$%^&*_~"""
# Removing punctuations in string
# Using loop + punctuation string
for ele in test_str:
if ele in ... |
#Output : Gfg is best for Geeks | Python | Remove punctuation from string
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# initializing punctuations string
punc = """!()-[]{};:'"\,<>./?@#$%^&*_~"""
# Removing punctuations in string
# Using loop + punctuation st... |
Python | Remove punctuation from string | https://www.geeksforgeeks.org/python-remove-punctuation-from-string/?ref=leftbar-rightbar | import re
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# Removing punctuations in string
# Using regex
res = re.sub(r"[^\w\s]", "", test_str)
# printing result
print("The string after punctuation filter : " + res) |
#Output : Gfg is best for Geeks | Python | Remove punctuation from string
import re
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# Removing punctuations in string
# Using regex
res = re.sub(r"[^\w\s]", "", test_str)
# printing result
print("The string after ... |
Python | Remove punctuation from string | https://www.geeksforgeeks.org/python-remove-punctuation-from-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Removing punctuations in string
# Using loop + punctuation string
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# initializing punctuations string
punc = """!()-[]{};:'"\,<>./?@#$%^&*... |
#Output : Gfg is best for Geeks | Python | Remove punctuation from string
# Python3 code to demonstrate working of
# Removing punctuations in string
# Using loop + punctuation string
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# initializing punctuations str... |
Python | Remove punctuation from string | https://www.geeksforgeeks.org/python-remove-punctuation-from-string/?ref=leftbar-rightbar | def remove_punctuation(test_str):
# Using filter() and lambda function to filter out punctuation characters
result = "".join(
filter(lambda x: x.isalpha() or x.isdigit() or x.isspace(), test_str)
)
return result
test_str = "Gfg, is best : for ! Geeks ;"
print("The original string is : " + test... |
#Output : Gfg is best for Geeks | Python | Remove punctuation from string
def remove_punctuation(test_str):
# Using filter() and lambda function to filter out punctuation characters
result = "".join(
filter(lambda x: x.isalpha() or x.isdigit() or x.isspace(), test_str)
)
return result
test_str = "Gfg, is best : for ! Geeks ;"
... |
Python | Remove punctuation from string | https://www.geeksforgeeks.org/python-remove-punctuation-from-string/?ref=leftbar-rightbar | import string
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# Removing punctuations using replace() method
for punctuation in string.punctuation:
test_str = test_str.replace(punctuation, "")
# printing result
print("The s... |
#Output : Gfg is best for Geeks | Python | Remove punctuation from string
import string
# initializing string
test_str = "Gfg, is best : for ! Geeks ;"
# printing original string
print("The original string is : " + test_str)
# Removing punctuations using replace() method
for punctuation in string.punctuation:
test_str = test_str.replace(punctuat... |
Python - Similar characters Strings comparison | https://www.geeksforgeeks.org/python-similar-characters-strings-comparison/ | # Python3 code to demonstrate working of
# Similar characters Strings comparison
# Using split() + sorted()
# initializing strings
test_str1 = "e:e:k:s:g"
test_str2 = "g:e:e:k:s"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))
# ... | #Input : test_str1 = 'e!e!k!s!g', test_str2 = 'g!e!e!k!s', delim = '!'
#Output : True | Python - Similar characters Strings comparison
# Python3 code to demonstrate working of
# Similar characters Strings comparison
# Using split() + sorted()
# initializing strings
test_str1 = "e:e:k:s:g"
test_str2 = "g:e:e:k:s"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("T... |
Python - Similar characters Strings comparison | https://www.geeksforgeeks.org/python-similar-characters-strings-comparison/ | # Python3 code to demonstrate working of
# Similar characters Strings comparison
# Using set() + split()
# initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))
# initial... | #Input : test_str1 = 'e!e!k!s!g', test_str2 = 'g!e!e!k!s', delim = '!'
#Output : True | Python - Similar characters Strings comparison
# Python3 code to demonstrate working of
# Similar characters Strings comparison
# Using set() + split()
# initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The orig... |
Python - Similar characters Strings comparison | https://www.geeksforgeeks.org/python-similar-characters-strings-comparison/ | # Python3 code to demonstrate working of
# Similar characters Strings comparison
# Using dictionary
# initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))
# initializing... | #Input : test_str1 = 'e!e!k!s!g', test_str2 = 'g!e!e!k!s', delim = '!'
#Output : True | Python - Similar characters Strings comparison
# Python3 code to demonstrate working of
# Similar characters Strings comparison
# Using dictionary
# initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original ... |
Python - Similar characters Strings comparison | https://www.geeksforgeeks.org/python-similar-characters-strings-comparison/ | # Importing the collections module
from collections import Counter
# Initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# Printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))
# Initializing empty dictionaries
dict1 = {}
di... | #Input : test_str1 = 'e!e!k!s!g', test_str2 = 'g!e!e!k!s', delim = '!'
#Output : True | Python - Similar characters Strings comparison
# Importing the collections module
from collections import Counter
# Initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# Printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))... |
Python - Similar characters Strings comparison | https://www.geeksforgeeks.org/python-similar-characters-strings-comparison/ | # initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# initializing delimiter
delim = ":"
# convert strings to lists of characters
list1 = test_str1.split(delim)
list2 = test_str2.split(delim)
# check if both lists have the same characters
res = all(char in list2 for char in list1) and all(char in list... | #Input : test_str1 = 'e!e!k!s!g', test_str2 = 'g!e!e!k!s', delim = '!'
#Output : True | Python - Similar characters Strings comparison
# initializing strings
test_str1 = "e:k:s:g"
test_str2 = "g:e:k:s"
# initializing delimiter
delim = ":"
# convert strings to lists of characters
list1 = test_str1.split(delim)
list2 = test_str2.split(delim)
# check if both lists have the same characters
res = all(char... |
Python - Remove K length Duplicates from String | https://www.geeksforgeeks.org/python-remove-k-length-duplicates-from-string/ | # Python3 code to demonstrate working of
# Remove K length Duplicates from String
# Using loop + slicing
# initializing strings
test_str = "geeksforfreeksfo"
# printing original string
print("The original string is : " + str(test_str))
# initializing K
K = 3
memo = set()
res = []
for idx in range(0, len(test_str) -... |
#Output : The original string is : geeksforfreeksfo
| Python - Remove K length Duplicates from String
# Python3 code to demonstrate working of
# Remove K length Duplicates from String
# Using loop + slicing
# initializing strings
test_str = "geeksforfreeksfo"
# printing original string
print("The original string is : " + str(test_str))
# initializing K
K = 3
memo = ... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | # Python3 code to demonstrate working of
# Suffix removal from String list
# using loop + remove() + endswith()
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x"
# Suffix removal from St... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
# Python3 code to demonstrate working of
# Suffix removal from String list
# using loop + remove() + endswith()
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize s... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | # Python3 code to demonstrate working of
# Suffix removal from String list
# using list comprehension + endswith()
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suff
suff = "x"
# Suffix removal from S... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
# Python3 code to demonstrate working of
# Suffix removal from String list
# using list comprehension + endswith()
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initializ... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | # Python3 code to demonstrate working of
# Remove prefix strings from list
# using filter + endswith()
# initialize suff
suff = "x"
def eva(x):
return not x.endswith(suff)
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(t... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
# Python3 code to demonstrate working of
# Remove prefix strings from list
# using filter + endswith()
# initialize suff
suff = "x"
def eva(x):
return not x.endswith(suff)
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | # Python3 code to demonstrate working of
# Suffix removal from String list
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x"
res = []
# Suffix removal from String list
for i in test_list... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
# Python3 code to demonstrate working of
# Suffix removal from String list
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x"
res = []
# Suffix r... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | # Python3 code to demonstrate working of
# Suffix removal from String list
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x"
res = []
# Suffix removal from String list
for i in test_list... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
# Python3 code to demonstrate working of
# Suffix removal from String list
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x"
res = []
# Suffix r... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | # Python3 code to demonstrate working of
# Remove prefix strings from list
# initialize suff
suff = "x"
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# Remove prefix strings from list
res = list(filter(lambda x: ... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
# Python3 code to demonstrate working of
# Remove prefix strings from list
# initialize suff
suff = "x"
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# Remove prefix strin... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | import re
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x$"
# Suffix removal from String list using regular expressions
res = [x for x in test_list if not re.search(suff, x)]
# printin... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
import re
# initialize list
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
# initialize suffix
suff = "x$"
# Suffix removal from String list using regular expressions
res = [x for x in test_... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | import pandas as pd
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
suffix = "x"
# Convert the list of strings to a pandas series
s = pd.Series(test_list)
# Remove elements with the suffix
res = s[~s.str.endswith(suffix)].tolist()
... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
import pandas as pd
test_list = ["allx", "lovex", "gfg", "xit", "is", "bestx"]
# printing original list
print("The original list : " + str(test_list))
suffix = "x"
# Convert the list of strings to a pandas series
s = pd.Series(test_list)
# Remove elements with the suffix
... |
Python - Remove suffix from string list | https://www.geeksforgeeks.org/python-remove-suffix-from-string-list/ | def remove_strings_with_prefix(lst, prefix):
# Base case: if the list is empty, return an empty list
if not lst:
return []
# Recursive case: remove the prefix from the first element in the list
head = lst[0]
if head.endswith(prefix):
# If the head ends with the prefix, skip it and r... |
#Output : The original list : ['allx', 'lovex', 'gfg', 'xit', 'is', 'bestx'] | Python - Remove suffix from string list
def remove_strings_with_prefix(lst, prefix):
# Base case: if the list is empty, return an empty list
if not lst:
return []
# Recursive case: remove the prefix from the first element in the list
head = lst[0]
if head.endswith(prefix):
# If th... |
Python Counter| Find all duplicate characters in string | https://www.geeksforgeeks.org/python-counter-find-duplicate-characters-string/ | def duplicate_characters(string):
# Create an empty dictionary
chars = {}
# Iterate through each character in the string
for char in string:
# If the character is not in the dictionary, add it
if char not in chars:
chars[char] = 1
else:
# If the character... |
#Output : ['g', 'e', 'k', 's'] | Python Counter| Find all duplicate characters in string
def duplicate_characters(string):
# Create an empty dictionary
chars = {}
# Iterate through each character in the string
for char in string:
# If the character is not in the dictionary, add it
if char not in chars:
char... |
Python Counter| Find all duplicate characters in string | https://www.geeksforgeeks.org/python-counter-find-duplicate-characters-string/ | from collections import Counter
def find_dup_char(input):
# now create dictionary using counter method
# which will have strings as key and their
# frequencies as value
WC = Counter(input)
# Finding no. of occurrence of a character
# and get the index of it.
for letter, count in WC.items... |
#Output : ['g', 'e', 'k', 's'] | Python Counter| Find all duplicate characters in string
from collections import Counter
def find_dup_char(input):
# now create dictionary using counter method
# which will have strings as key and their
# frequencies as value
WC = Counter(input)
# Finding no. of occurrence of a character
# an... |
Python Counter| Find all duplicate characters in string | https://www.geeksforgeeks.org/python-counter-find-duplicate-characters-string/ | def find_dup_char(input):
x = []
for i in input:
if i not in x and input.count(i) > 1:
x.append(i)
print(" ".join(x))
# Driver program
if __name__ == "__main__":
input = "geeksforgeeks"
find_dup_char(input) |
#Output : ['g', 'e', 'k', 's'] | Python Counter| Find all duplicate characters in string
def find_dup_char(input):
x = []
for i in input:
if i not in x and input.count(i) > 1:
x.append(i)
print(" ".join(x))
# Driver program
if __name__ == "__main__":
input = "geeksforgeeks"
find_dup_char(input)
#Output : ['... |
Python Counter| Find all duplicate characters in string | https://www.geeksforgeeks.org/python-counter-find-duplicate-characters-string/ | def find_dup_char(input):
x = filter(lambda x: input.count(x) >= 2, input)
print(" ".join(set(x)))
# Driver Code
if __name__ == "__main__":
input = "geeksforgeeks"
find_dup_char(input) |
#Output : ['g', 'e', 'k', 's'] | Python Counter| Find all duplicate characters in string
def find_dup_char(input):
x = filter(lambda x: input.count(x) >= 2, input)
print(" ".join(set(x)))
# Driver Code
if __name__ == "__main__":
input = "geeksforgeeks"
find_dup_char(input)
#Output : ['g', 'e', 'k', 's']
[END] |
Python Counter| Find all duplicate characters in string | https://www.geeksforgeeks.org/python-counter-find-duplicate-characters-string/ | def find_duplicate_chars(string):
# Create empty sets to store unique and duplicate characters
unique_chars = set()
duplicate_chars = set()
# Iterate through each character in the string
for char in string:
# If the character is already in unique_chars, it is a duplicate
if char in ... |
#Output : ['g', 'e', 'k', 's'] | Python Counter| Find all duplicate characters in string
def find_duplicate_chars(string):
# Create empty sets to store unique and duplicate characters
unique_chars = set()
duplicate_chars = set()
# Iterate through each character in the string
for char in string:
# If the character is alread... |
Python Counter| Find all duplicate characters in string | https://www.geeksforgeeks.org/python-counter-find-duplicate-characters-string/ | from functools import reduce
def find_dup_char(input):
x = reduce(
lambda x, b: x + b if input.rindex(b) != input.index(b) and b not in x else x,
input,
"",
)
print(x)
# Driver Code
if __name__ == "__main__":
input = "geeksforgeeks"
find_dup_char(input) |
#Output : ['g', 'e', 'k', 's'] | Python Counter| Find all duplicate characters in string
from functools import reduce
def find_dup_char(input):
x = reduce(
lambda x, b: x + b if input.rindex(b) != input.index(b) and b not in x else x,
input,
"",
)
print(x)
# Driver Code
if __name__ == "__main__":
input = "ge... |
Python - Replace duplicate Occurrence in String | https://www.geeksforgeeks.org/python-replace-duplicate-occurrence-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Replace duplicate Occurrence in String
# Using split() + enumerate() + loop
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. \
Classes help understand better . "
# printing original string
print("The original string is : " + str(test_... |
#Output : The original string is : Gfg is best . Gfg also has Classes now. Classes help understand better . | Python - Replace duplicate Occurrence in String
# Python3 code to demonstrate working of
# Replace duplicate Occurrence in String
# Using split() + enumerate() + loop
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. \
Classes help understand better . "
# printing original st... |
Python - Replace duplicate Occurrence in String | https://www.geeksforgeeks.org/python-replace-duplicate-occurrence-in-string/?ref=leftbar-rightbar | # Python3 code to demonstrate working of
# Replace duplicate Occurrence in String
# Using keys() + index() + list comprehension
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. Classes help understand better . "
# printing original string
print("The original string is : " + str(test_str))
# ... |
#Output : The original string is : Gfg is best . Gfg also has Classes now. Classes help understand better . | Python - Replace duplicate Occurrence in String
# Python3 code to demonstrate working of
# Replace duplicate Occurrence in String
# Using keys() + index() + list comprehension
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. Classes help understand better . "
# printing original string
prin... |
Python - Replace duplicate Occurrence in String | https://www.geeksforgeeks.org/python-replace-duplicate-occurrence-in-string/?ref=leftbar-rightbar | # initializing string
test_str = "Gfg is best . Gfg also has Classes now. Classes help understand better . "
# printing original string
print("The original string is : " + str(test_str))
# initializing replace mapping
repl_dict = {"Gfg": "It", "Classes": "They"}
# Replace duplicate Occurrence in String
# Using set()... |
#Output : The original string is : Gfg is best . Gfg also has Classes now. Classes help understand better . | Python - Replace duplicate Occurrence in String
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. Classes help understand better . "
# printing original string
print("The original string is : " + str(test_str))
# initializing replace mapping
repl_dict = {"Gfg": "It", "Classes": "They"}
# Re... |
Python - Replace duplicate Occurrence in String | https://www.geeksforgeeks.org/python-replace-duplicate-occurrence-in-string/?ref=leftbar-rightbar | import re
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. \
Classes help understand better . "
# initializing replace mapping
repl_dict = {"Gfg": "It", "Classes": "They"}
# regular expression pattern to match repeated occurrences
pattern = r"\b(" + "|".join(repl_dict.keys())... |
#Output : The original string is : Gfg is best . Gfg also has Classes now. Classes help understand better . | Python - Replace duplicate Occurrence in String
import re
# initializing string
test_str = "Gfg is best . Gfg also has Classes now. \
Classes help understand better . "
# initializing replace mapping
repl_dict = {"Gfg": "It", "Classes": "They"}
# regular expression pattern to match repeated occurre... |
Ways to convert string to dictionaries | https://www.geeksforgeeks.org/ways-to-convert-string-to-dictionary/?ref=leftbar-rightbar | # Python implementation of converting
# a string into a dictionary
# initialising string
str = " Jan = January; Feb = February; Mar = March"
# At first the string will be splitted
# at the occurrence of ';' to divide items
# for the dictionaryand then again splitting
# will be done at occurrence of '=' which
# genera... |
#Output : {' Jan ': ' January', ' Feb ': ' February', ' Mar ': ' March'} | Ways to convert string to dictionaries
# Python implementation of converting
# a string into a dictionary
# initialising string
str = " Jan = January; Feb = February; Mar = March"
# At first the string will be splitted
# at the occurrence of ';' to divide items
# for the dictionaryand then again splitting
# will be d... |
Ways to convert string to dictionaries | https://www.geeksforgeeks.org/ways-to-convert-string-to-dictionary/?ref=leftbar-rightbar | # Python implementation of converting
# a string into a dictionary
# initialising first string
str1 = "Jan, Feb, March"
str2 = "January | February | March"
# splitting first string
# in order to get keys
keys = str1.split(", ")
# splitting second string
# in order to get values
values = str2.split("|")
# declaring ... |
#Output : {' Jan ': ' January', ' Feb ': ' February', ' Mar ': ' March'} | Ways to convert string to dictionaries
# Python implementation of converting
# a string into a dictionary
# initialising first string
str1 = "Jan, Feb, March"
str2 = "January | February | March"
# splitting first string
# in order to get keys
keys = str1.split(", ")
# splitting second string
# in order to get values... |
Ways to convert string to dictionaries | https://www.geeksforgeeks.org/ways-to-convert-string-to-dictionary/?ref=leftbar-rightbar | # Python implementation of converting
# a string into a dictionary
# initialising first string
str1 = "Jan, Feb, March"
str2 = "January | February | March"
# splitting first string
# in order to get keys
keys = str1.split(", ")
# splitting second string
# in order to get values
values = str2.split("|")
# declaring ... |
#Output : {' Jan ': ' January', ' Feb ': ' February', ' Mar ': ' March'} | Ways to convert string to dictionaries
# Python implementation of converting
# a string into a dictionary
# initialising first string
str1 = "Jan, Feb, March"
str2 = "January | February | March"
# splitting first string
# in order to get keys
keys = str1.split(", ")
# splitting second string
# in order to get values... |
Ways to convert string to dictionaries | https://www.geeksforgeeks.org/ways-to-convert-string-to-dictionary/?ref=leftbar-rightbar | # Python implementation of converting
# a string into a dictionary
# importing ast module
import ast
# initialising string dictionary
str = '{"Jan" : "January", "Feb" : "February", "Mar" : "March"}'
# converting string into dictionary
dictionary = ast.literal_eval(str)
# printing the generated dictionary
print(dict... |
#Output : {' Jan ': ' January', ' Feb ': ' February', ' Mar ': ' March'} | Ways to convert string to dictionaries
# Python implementation of converting
# a string into a dictionary
# importing ast module
import ast
# initialising string dictionary
str = '{"Jan" : "January", "Feb" : "February", "Mar" : "March"}'
# converting string into dictionary
dictionary = ast.literal_eval(str)
# print... |
Ways to convert string to dictionaries | https://www.geeksforgeeks.org/ways-to-convert-string-to-dictionary/?ref=leftbar-rightbar | # Python implementation of converting
# a string into a dictionary
# initialising string
str = " Jan = January; Feb = February; Mar = March"
res = dict()
x = str.split(";")
for i in x:
a = i[: i.index("=")]
b = i[i.index("=") + 1 :]
res[a] = b
# printing the generated dictionary
print(res) |
#Output : {' Jan ': ' January', ' Feb ': ' February', ' Mar ': ' March'} | Ways to convert string to dictionaries
# Python implementation of converting
# a string into a dictionary
# initialising string
str = " Jan = January; Feb = February; Mar = March"
res = dict()
x = str.split(";")
for i in x:
a = i[: i.index("=")]
b = i[i.index("=") + 1 :]
res[a] = b
# printing the generate... |
Python - Check if two strings are Rotationally Equivalent | https://www.geeksforgeeks.org/python-check-if-two-strings-are-rotationally-equivalent/ | # Python3 code to demonstrate working of
# Check if two strings are Rotationally Equivalent
# Using loop + string slicing
# initializing strings
test_str1 = "geeks"
test_str2 = "eksge"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2... |
#Output : The original string 1 is : geeks | Python - Check if two strings are Rotationally Equivalent
# Python3 code to demonstrate working of
# Check if two strings are Rotationally Equivalent
# Using loop + string slicing
# initializing strings
test_str1 = "geeks"
test_str2 = "eksge"
# printing original strings
print("The original string 1 is : " + str(tes... |
Python - Check if two strings are Rotationally Equivalent | https://www.geeksforgeeks.org/python-check-if-two-strings-are-rotationally-equivalent/ | # Python3 code to demonstrate working of
# Check if two strings are Rotationally Equivalent
# Using any() + join() + enumerate()
# initializing strings
test_str1 = "geeks"
test_str2 = "eksge"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(te... |
#Output : The original string 1 is : geeks | Python - Check if two strings are Rotationally Equivalent
# Python3 code to demonstrate working of
# Check if two strings are Rotationally Equivalent
# Using any() + join() + enumerate()
# initializing strings
test_str1 = "geeks"
test_str2 = "eksge"
# printing original strings
print("The original string 1 is : " + ... |
Python - Check if two strings are Rotationally Equivalent | https://www.geeksforgeeks.org/python-check-if-two-strings-are-rotationally-equivalent/ | test_str1 = "geeks"
test_str2 = "eksge"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))
# Check if two strings are Rotationally Equivalent
# Using inbuilt function
res = test_str2 in (test_str1 + test_str1)
# printing result
prin... |
#Output : The original string 1 is : geeks | Python - Check if two strings are Rotationally Equivalent
test_str1 = "geeks"
test_str2 = "eksge"
# printing original strings
print("The original string 1 is : " + str(test_str1))
print("The original string 2 is : " + str(test_str2))
# Check if two strings are Rotationally Equivalent
# Using inbuilt function
res = ... |
Python | Test if string is subset of another listr | https://www.geeksforgeeks.org/python-test-if-string-is-subset-of-another/ | # Python3 code to demonstrate working of
# Test if string is subset of another
# Using all()
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subset of another
# Using all()
res = all(ele in test_str1 f... |
#Output : The original string is : geeksforgeeks | Python | Test if string is subset of another listr
# Python3 code to demonstrate working of
# Test if string is subset of another
# Using all()
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subset of... |
Python | Test if string is subset of another listr | https://www.geeksforgeeks.org/python-test-if-string-is-subset-of-another/ | # Python3 code to demonstrate working of
# Test if string is subset of another
# Using issubset()
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subset of another
# Using issubset()
res = set(test_str... |
#Output : The original string is : geeksforgeeks | Python | Test if string is subset of another listr
# Python3 code to demonstrate working of
# Test if string is subset of another
# Using issubset()
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subs... |
Python | Test if string is subset of another listr | https://www.geeksforgeeks.org/python-test-if-string-is-subset-of-another/ | def is_subset(test_str1, test_str2):
if not test_str2:
return True
if not test_str1:
return False
if test_str1[0] == test_str2[0]:
return is_subset(test_str1[1:], test_str2[1:])
return is_subset(test_str1[1:], test_str2)
# initializing strings
test_str1 = "geeksforgeeks"
test_s... |
#Output : The original string is : geeksforgeeks | Python | Test if string is subset of another listr
def is_subset(test_str1, test_str2):
if not test_str2:
return True
if not test_str1:
return False
if test_str1[0] == test_str2[0]:
return is_subset(test_str1[1:], test_str2[1:])
return is_subset(test_str1[1:], test_str2)
# init... |
Python | Test if string is subset of another listr | https://www.geeksforgeeks.org/python-test-if-string-is-subset-of-another/ | # Python3 code to demonstrate working of
# Test if string is subset of another
# Using filter() and lambda
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subset of another
# Using filter() and lambda
... |
#Output : The original string is : geeksforgeeks | Python | Test if string is subset of another listr
# Python3 code to demonstrate working of
# Test if string is subset of another
# Using filter() and lambda
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if strin... |
Python | Test if string is subset of another listr | https://www.geeksforgeeks.org/python-test-if-string-is-subset-of-another/ | # importing Counter from collections module
from collections import Counter
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subset of another
# Using Counter() function
count1 = Counter(test_str1)
coun... |
#Output : The original string is : geeksforgeeks | Python | Test if string is subset of another listr
# importing Counter from collections module
from collections import Counter
# initializing strings
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
# Test if string is subset of another
# Using ... |
Python | Test if string is subset of another listr | https://www.geeksforgeeks.org/python-test-if-string-is-subset-of-another/ | from functools import reduce
def is_subset(str1, str2):
return reduce(lambda a, b: a and b, map(lambda c: c in str1, str2))
# Example usage:
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)
print(is_subset(test_str1, test_str2))
# This code... |
#Output : The original string is : geeksforgeeks | Python | Test if string is subset of another listr
from functools import reduce
def is_subset(str1, str2):
return reduce(lambda a, b: a and b, map(lambda c: c in str1, str2))
# Example usage:
test_str1 = "geeksforgeeks"
test_str2 = "gfks"
# printing original string
print("The original string is : " + test_str1)... |
Python Program to Generate Random binary string | https://www.geeksforgeeks.org/python-program-to-generate-random-binary-string/?ref=leftbar-rightbar | # Python program for random
# binary string generation
import random
# Function to create the
# random binary string
def rand_key(p):
# Variable to store the
# string
key1 = ""
# Loop to find the string
# of desired length
for i in range(p):
# randint function to generate
# ... | Input: 7
Output: Desired length of random binary string is: 1000001 | Python Program to Generate Random binary string
# Python program for random
# binary string generation
import random
# Function to create the
# random binary string
def rand_key(p):
# Variable to store the
# string
key1 = ""
# Loop to find the string
# of desired length
for i in range(p):
... |
Python Program to Generate Random binary string | https://www.geeksforgeeks.org/python-program-to-generate-random-binary-string/?ref=leftbar-rightbar | import random
def generate_binary_string(n):
# Generate a random number with n bits
number = random.getrandbits(n)
# Convert the number to binary
binary_string = format(number, "0b")
return binary_string
# Test the function
n = 7
print("Random binary string of length {}: {}".format(n, generate_b... | Input: 7
Output: Desired length of random binary string is: 1000001 | Python Program to Generate Random binary string
import random
def generate_binary_string(n):
# Generate a random number with n bits
number = random.getrandbits(n)
# Convert the number to binary
binary_string = format(number, "0b")
return binary_string
# Test the function
n = 7
print("Random bina... |
Python Program to convert binary to string | https://www.geeksforgeeks.org/convert-binary-to-string-using-python/ | # Python3 code to demonstrate working of
# Converting binary to string
# Using BinarytoDecimal(binary)+chr()
# Defining BinarytoDecimal() function
def BinaryToDecimal(binary):
binary1 = binary
decimal, i, n = 0, 0, 0
while binary != 0:
dec = binary % 10
decimal = decimal + dec * pow(2, i)
... |
#Output : The binary value is: 10001111100101110010111010111110011 | Python Program to convert binary to string
# Python3 code to demonstrate working of
# Converting binary to string
# Using BinarytoDecimal(binary)+chr()
# Defining BinarytoDecimal() function
def BinaryToDecimal(binary):
binary1 = binary
decimal, i, n = 0, 0, 0
while binary != 0:
dec = binary % 10
... |
Python Program to convert binary to string | https://www.geeksforgeeks.org/convert-binary-to-string-using-python/ | # Python3 code to demonstrate working of
# Converting binary to string
# Using BinarytoDecimal(binary)+chr()
# Defining BinarytoDecimal() function
def BinaryToDecimal(binary):
# Using int function to convert to
# string
string = int(binary, 2)
return string
# Driver's code
# initializing binary dat... |
#Output : The binary value is: 10001111100101110010111010111110011 | Python Program to convert binary to string
# Python3 code to demonstrate working of
# Converting binary to string
# Using BinarytoDecimal(binary)+chr()
# Defining BinarytoDecimal() function
def BinaryToDecimal(binary):
# Using int function to convert to
# string
string = int(binary, 2)
return string
... |
Python - Reverse Sort a String | https://www.geeksforgeeks.org/python-reverse-sort-a-string/ | # Python3 code to demonstrate
# Reverse Sort a String
# using join() + sorted() + reverse
# initializing string
test_string = "geekforgeeks"
# printing original string
print("The original string : " + str(test_string))
# using join() + sorted() + reverse
# Sorting a string
res = "".join(sorted(test_string, reverse=T... |
#Output : The original string : geekforgeeks | Python - Reverse Sort a String
# Python3 code to demonstrate
# Reverse Sort a String
# using join() + sorted() + reverse
# initializing string
test_string = "geekforgeeks"
# printing original string
print("The original string : " + str(test_string))
# using join() + sorted() + reverse
# Sorting a string
res = "".j... |
Python - Reverse Sort a String | https://www.geeksforgeeks.org/python-reverse-sort-a-string/ | # Python code to demonstrate
# Reverse Sort a String
# using sorted() + reduce() + lambda
# initializing string
test_string = "geekforgeeks"
# printing original string
print("The original string : " + str(test_string))
# using sorted() + reduce() + lambda
# Reverse Sort a String
res = reduce(lambda x, y: x + y, sort... |
#Output : The original string : geekforgeeks | Python - Reverse Sort a String
# Python code to demonstrate
# Reverse Sort a String
# using sorted() + reduce() + lambda
# initializing string
test_string = "geekforgeeks"
# printing original string
print("The original string : " + str(test_string))
# using sorted() + reduce() + lambda
# Reverse Sort a String
res ... |
Python - Reverse Sort a String | https://www.geeksforgeeks.org/python-reverse-sort-a-string/ | # Python code to demonstrate
# To Sort and Reverse a String
# using list() + sort() + join()
# initializing string
test_string = "geekforgeeks"
# printing original string
print("The original string : " + str(test_string))
# using list() + sort() + join
# To Sort and reverse a String
temp = list(test_string)
temp.sor... |
#Output : The original string : geekforgeeks | Python - Reverse Sort a String
# Python code to demonstrate
# To Sort and Reverse a String
# using list() + sort() + join()
# initializing string
test_string = "geekforgeeks"
# printing original string
print("The original string : " + str(test_string))
# using list() + sort() + join
# To Sort and reverse a String
... |
Python - Reverse Sort a String | https://www.geeksforgeeks.org/python-reverse-sort-a-string/ | # initializing list
test_list = ["4", "kg", "butter", "for", "40", "bucks"]
# print original list
print("Original List : ", test_list)
# replace substring using map() function and lambda expression
res = list(map(lambda x: x.replace("4", "1"), test_list))
# print modified list
print("Modified List : ", res) |
#Output : The original string : geekforgeeks | Python - Reverse Sort a String
# initializing list
test_list = ["4", "kg", "butter", "for", "40", "bucks"]
# print original list
print("Original List : ", test_list)
# replace substring using map() function and lambda expression
res = list(map(lambda x: x.replace("4", "1"), test_list))
# print modified list
print(... |
Python - Reverse Sort a String | https://www.geeksforgeeks.org/python-reverse-sort-a-string/ | # initializing list
test_list = ["4", "kg", "butter", "for", "40", "bucks"]
# print original list
print("Original List : ", test_list)
# loop through each element and replace substring
for i in range(len(test_list)):
test_list[i] = test_list[i].replace("4", "1")
# print modified list
print("Modified List : ", te... |
#Output : The original string : geekforgeeks | Python - Reverse Sort a String
# initializing list
test_list = ["4", "kg", "butter", "for", "40", "bucks"]
# print original list
print("Original List : ", test_list)
# loop through each element and replace substring
for i in range(len(test_list)):
test_list[i] = test_list[i].replace("4", "1")
# print modified ... |
Python - Reverse Sort a String | https://www.geeksforgeeks.org/python-reverse-sort-a-string/ | # initializing list
test_list = ["4", "kg", "butter", "for", "40", "bucks"]
# using list comprehension to modify the list
modified_list = [elem.replace("4", "1") for elem in test_list]
# printing the modified list
print("Modified List : ", modified_list) |
#Output : The original string : geekforgeeks | Python - Reverse Sort a String
# initializing list
test_list = ["4", "kg", "butter", "for", "40", "bucks"]
# using list comprehension to modify the list
modified_list = [elem.replace("4", "1") for elem in test_list]
# printing the modified list
print("Modified List : ", modified_list)
#Output : The original stri... |
Python | Check if a Substring is Present in a Given String | https://www.geeksforgeeks.org/python-check-substring-present-given-string/ | # Take input from users
MyString1 = "A geek in need is a geek indeed"
if "need" in MyString1:
print("Yes! it is present in the string")
else:
print("No! it is not present") |
#Output : Example 1: #Input : Substring = "geeks" | Python | Check if a Substring is Present in a Given String
# Take input from users
MyString1 = "A geek in need is a geek indeed"
if "need" in MyString1:
print("Yes! it is present in the string")
else:
print("No! it is not present")
#Output : Example 1: #Input : Substring = "geeks"
[END] |
Python | Check if a Substring is Present in a Given String | https://www.geeksforgeeks.org/python-check-substring-present-given-string/ | # Python code
# To check if a substring is present in a given string or not
# input strings str1 and substr
string = "geeks for geeks" # or string=input() -> taking input from the user
substring = "geeks" # or substring=input()
# splitting words in a given string
s = string.split()
# checking condition
# if substr... |
#Output : Example 1: #Input : Substring = "geeks" | Python | Check if a Substring is Present in a Given String
# Python code
# To check if a substring is present in a given string or not
# input strings str1 and substr
string = "geeks for geeks" # or string=input() -> taking input from the user
substring = "geeks" # or substring=input()
# splitting words in a given ... |
Python | Check if a Substring is Present in a Given String | https://www.geeksforgeeks.org/python-check-substring-present-given-string/ | # function to check if small string is
# there in big string
def check(string, sub_str):
if string.find(sub_str) == -1:
print("NO")
else:
print("YES")
# driver code
string = "geeks for geeks"
sub_str = "geek"
check(string, sub_str) |
#Output : Example 1: #Input : Substring = "geeks" | Python | Check if a Substring is Present in a Given String
# function to check if small string is
# there in big string
def check(string, sub_str):
if string.find(sub_str) == -1:
print("NO")
else:
print("YES")
# driver code
string = "geeks for geeks"
sub_str = "geek"
check(string, sub_str)
... |
Python | Check if a Substring is Present in a Given String | https://www.geeksforgeeks.org/python-check-substring-present-given-string/ | def check(s2, s1):
if s2.count(s1) > 0:
print("YES")
else:
print("NO")
s2 = "A geek in need is a geek indeed"
s1 = "geeks"
check(s2, s1) |
#Output : Example 1: #Input : Substring = "geeks" | Python | Check if a Substring is Present in a Given String
def check(s2, s1):
if s2.count(s1) > 0:
print("YES")
else:
print("NO")
s2 = "A geek in need is a geek indeed"
s1 = "geeks"
check(s2, s1)
#Output : Example 1: #Input : Substring = "geeks"
[END] |
Python | Check if a Substring is Present in a Given String | https://www.geeksforgeeks.org/python-check-substring-present-given-string/ | any_string = "Geeks for Geeks substring "
start = 0
end = 1000
print(any_string.index("substring", start, end)) |
#Output : Example 1: #Input : Substring = "geeks" | Python | Check if a Substring is Present in a Given String
any_string = "Geeks for Geeks substring "
start = 0
end = 1000
print(any_string.index("substring", start, end))
#Output : Example 1: #Input : Substring = "geeks"
[END] |
Python | Check if a Substring is Present in a Given String | https://www.geeksforgeeks.org/python-check-substring-present-given-string/ | a = ["Geeks-13", "for-56", "Geeks-78", "xyz-46"]
for i in a:
if i.__contains__("Geeks"):
print(f"Yes! {i} is containing.") |
#Output : Example 1: #Input : Substring = "geeks" | Python | Check if a Substring is Present in a Given String
a = ["Geeks-13", "for-56", "Geeks-78", "xyz-46"]
for i in a:
if i.__contains__("Geeks"):
print(f"Yes! {i} is containing.")
#Output : Example 1: #Input : Substring = "geeks"
[END] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.