“Jak uzyskać określony znak w ciągu na liczbach Python” Kod odpowiedzi

Parse Pierwsze znaki z String Python

# Get First 3 character of a string in python
first_chars = sample_str[0:3] 
print('First 3 characters: ', first_chars)

# Output:
First 3 characters: Hel
Magnificent Moose

Jak zdobyć dowolną literę z pithon sznurku

Random = "Whatever"#you can put anything here
words2 = Random.split(" ")
print('number of letters:')#you can delete this line...
print(len(Random))#and this one. these lines just Tell you how many 
#letters there are
while True:#you can get rid of this loop if you want
    ask = int(input("what letter do you want?"))
    print(Random[ask-1])
Tough Termite

Jak uzyskać określony znak w ciągu na liczbach Python

# An example text
text = "This is text"
# print the [0] first character of the sample text, 
#			[4] fifth character,
#			[0: 4] first to fifth character,
#			[-1] last character.
print(tekst[0], tekst[4], tekst[0:4], tekst[-1])
Edraa

Odpowiedzi podobne do “Jak uzyskać określony znak w ciągu na liczbach Python”

Pytania podobne do “Jak uzyskać określony znak w ciągu na liczbach Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu