“Index de chaîne Python de” Réponses codées

Python String Remplacer l'index

# strings are immutable in Python, 
# we have to create a new string which 
# includes the value at the desired index

s = s[:index] + newstring + s[index + 1:]
Dead Dolphin

Liste python à la chaîne

mystring = 'hello, world'

mylist = string1.split(', ') #output => ['hello', 'world']

myjoin1 = ', '.join(mylist) #output => 'hello, world'
myjoin2 = ' '.join(mylist) #output => 'hello world'
myjoin3 = ','.join(mylist) #output => 'hello,world'
NatanM

Index de chaîne Python de

sentence = 'Python programming is fun.'

result = sentence.index('is fun')
print("Substring 'is fun':", result)

result = sentence.index('Java')
print("Substring 'Java':", result)
Healthy Heron

Réponses similaires à “Index de chaîne Python de”

Questions similaires à “Index de chaîne Python de”

Plus de réponses similaires à “Index de chaîne Python de” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code