Answers for "python see which string comes first in a string"

4

print first word of a string python and return it

def print_first_word():
    words = "All good things come to those who wait"
    print(words.split().pop(0))
    #to print the last word use pop(-1)
print_first_word()
Posted by: Guest on April-07-2020

Code answers related to "python see which string comes first in a string"

Python Answers by Framework

Browse Popular Code Answers by Language