Write code to create a list of word lengths for the words in original str using the accumulation pattern and assign the answer to a variable num words list

0 votes

original_str ="The quick brown rhino jumped over the extremely lazy fox" .Can somebdy help me with this python problem

May 27, 2020 in Python by kartik
• 37,520 points
4,020 views

1 answer to this question.

0 votes

Hi,

 num_words_list = len(original_str.split())

  1. original_str.split() - split words in string by space, return list of words
  2. len(original_str.split()) - return count of words in list created by original_str.split()
  3. save result to num_words_list
Hope this helps!!
answered May 27, 2020 by Niroj
• 82,840 points

"list of word lengths for the words in original str using the accumulation pattern" meaning you have iterate .. however in your reply its not iterating ..

"list of word lengths for the words in original str using the accumulation pattern" meaning you have to iterate .. however in your reply its not iterating ..

Related Questions In Python

+1 vote
1 answer
+4 votes
3 answers

Write a for loop that prints all elements of a list and their position in the list. a = [4,7,3,2,5,9]

Try using this question by list comprehension: a=[4,7,3,2,5,9] print([x for ...READ MORE

answered Dec 9, 2019 in Python by vinaykumar
• 200 points
35,241 views
+1 vote
0 answers

Sum the values of column matching and not matching from a .txt file and write output to a two different files using Python

Name                                                    value DR_CNDAOFSZAPZP_GPFS_VOL.0 139264 DR_CNDAOFSZAPZP_GPFS_VOL.1 15657 DR_CNDAOFSZAPZP_GPFS_VOL.0 139264 DR_CNDAOFSZAPZP_GPFS_VOL.1 156579 DR_CNDAOFSZAPZP_GPFS_VOL.2 156579 DR_CNDAOFSZAPZP_GPFS_VOL.3 ...READ MORE

Nov 20, 2019 in Python by Sagar
• 130 points
1,292 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,642 views
0 votes
1 answer
0 votes
1 answer

What is the equivalent to a JavaScript setInterval/setTimeout in Android/Java?

Hii @kartik, As always with Android there's lots ...READ MORE

answered May 26, 2020 in Java by Niroj
• 82,840 points
3,938 views
0 votes
1 answer

How to remove all of the data in a table using Django?

Hello @kartik, Inside a manager: def delete_everything(self): ...READ MORE

answered Aug 12, 2020 in Python by Niroj
• 82,840 points
4,492 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP