for
loop using in
for range(start,stop,step)
.extend()
, +, .reverse(), .sort()
.split()
, and list to strings, .join()
print("hello", end='')
> Student will be able to
for
with in
for range()
in looping operations .extend()
, +, .reverse(), .sort()
.split()
and .join()
Examples
# [ ] review and run example
tip = "Notebooks can be exported as .pdf"
tip_words = tip.split()
print("STRING:", tip)
print("LIST:", tip_words, "\n")
for word in tip_words:
print(word)
# [ ] review and run example
rhyme = "London bridge is falling down"
rhyme_words = rhyme.split()
rhyme_words.reverse()
for word in rhyme_words:
print(word)
# [ ] split the string(rhyme) into a list of words (rhyme_words)
# [ ] print each word on it's own line
rhyme = 'Jack and Jill went up the hill To fetch a pail of water'
#Answer:
rhyme_words = rhyme.split()
for word in rhyme_words:
print(word)
# [ ] split code_tip into a list and print the first and every other word
code_tip = "Python uses spaces for indentation"
#Answer:
code_tip_list = []
code_tip_words = code_tip.split()
for word in code_tip_words[0::2]:
code_tip_list.append(word)
print('code_tip_list = ',code_tip_list)
# [ ] review and run example
code_tip = "Python-uses-spaces-for-indentation"
tip_words = code_tip.split('-')
print(tip_words)
# [ ] review and run example - study the list print output
code_tip = "Python uses spaces for indentation"
# split on "a"
tip_words = code_tip.split('a')
print(code_tip)
print(tip_words)
# [ ] review and run example
# triple quotes ''' ''' preserve formatting such as spaces and line breaks
big_quote = """Jack and Jill went up the hill
To fetch a pail of water
Jack fell down and broke his crown
And Jill came tumbling after"""
# split on line breaks (\n)
quote_lines = big_quote.split('\n')
print(quote_lines, '\n')
# print the list in reverse with index slicing
for line in quote_lines[::-1]:
print(line)
# [ ] split poem into a list of phrases by splitting on "*" a
# [ ] print each phrase on a new line in title case
poem = "Write code frequently*Save code frequently*Comment code frequently*Study code frequently*"
#Answer:
poem_words = poem.split('*')
for word in poem_words:
print(word)
Concepts
.join()
build a string from a list¶.join()
is a method applied to a separator string and iterates through its argument¶tip_words = ['Notebooks', 'can', 'be', 'exported', 'as', '.pdf']
" ".join(tip_words)
a space (" ") is the separator that gets injected between the objects in the argument (the list "tip_words")
# [ ] review and run example
tip_words = ['Notebooks', 'can', 'be', 'exported', 'as', '.pdf']
# join tip_words objects with spaces
print(" ".join(tip_words))
# [ ] review and run example
no_space = ""
letters = ["P", "y", "t", "h", "o", "n"]
print(no_space.join(letters))
# [ ] review and run example - .join() iterates through sequences
dash = "-"
space = " "
word = "Iteration"
ellipises = "..."
dash_join = dash.join(word)
print(dash_join)
print(space.join(word))
print(ellipises.join(word))
# [ ] .join() letters list objects with an Asterisk: "*"
letters = ["A", "s", "t", "e", "r", "i", "s", "k"]
#Answer:
asterisk = "*"
asterisk_join = asterisk.join(letters)
print(asterisk_join)
# [ ] complete Choose the separator
phrase_words = ['Jack', 'and', 'Jill', 'went', 'up', 'the', 'hill', 'To', 'fetch', 'a', 'pail', 'of', 'water']
#Answer:
separator = input("Type the separator: ")
separator_join = separator.join(phrase_words)
print(separator_join)
Examples
# [ ] review and run example
hello_letters = list("Hello")
print(hello_letters)
# [ ] review and run example
# cast sting to list
word_letters = list("concatenates")
# .join() concatenates the list
# print on same line setting the end character
print('~'.join(word_letters))
# [ ] review and run example
print("Hello ", end = '')
print("world")
# [ ] review and run example
# This is the default print end
print("Hello World!", end="\n")
print('still something to learn about print()')
# [ ] review and run example
# end inserts any valid str character: A-z, 0-9,!,@,*,\n,\t or ''(empty string)...
for letter in "Concatenation":
print(letter, end='*')
# [ ] use 3 print() statements to output text to one line
# [ ] separate the lines by using "- " (dash space)
#Answer:
print('Hello everyone, ', end = '- ')
print('how are you ', end='- ')
print('today?')
# [ ] create a string (fact) of 20 or more characters and cast to a list (fact_letters)
# [ ] iterate fact, printing each char on one line, except for spaces print a new line
#Answer:
fact = "Always test your code"
fact_letters = list(fact)
for letter in fact:
if (letter==' '):
print("\n")
else:
print(letter,end='')
# [ ] create add the digits
#Answer:
digit_string = '12345678900987654321'
digit_list = list(digit_string)
digit_sum = 0
digit_equation = ""
for digit in digit_list:
digit_sum += int(digit)
print("+".join(digit_list),' = ',digit_sum)
Terms of use Privacy & cookies © 2017 Microsoft