“Python String Index” Ответ

Строка Python заменить индекс

# 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

Список Python to String

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

Python String Index

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

Ответы похожие на “Python String Index”

Вопросы похожие на “Python String Index”

Больше похожих ответов на “Python String Index” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования