Create a Python function called momo that takes a string of characters and returns a new string that contains the characters of the given string once each (without repetitions of consecutive characters), in the same order, and with their number of repetitions. For example, if the given string is 'bbcggggeeeee', the result is 'b2c1g4e5'. Do not forget to add in comments the type contract.

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter3: Coding With Variables, Named Constants, And Calculations
Section: Chapter Questions
Problem 3MQ4
icon
Related questions
Question

Create a Python function called momo that takes a string of characters and returns a new string that contains the characters of the given string once each (without repetitions of consecutive characters), in the same order, and with their number of repetitions. For example, if the given string is 'bbcggggeeeee', the result is 'b2c1g4e5'. Do not forget to add in comments the type contract.

#test 04
momo ("a")
'al'
momo ("aabbbccccx")
'a2b3c4x1'
momo ("aaa1111")
'a314'
momo ("aaabcaax")
'a3b1cla2x1'
Transcribed Image Text:#test 04 momo ("a") 'al' momo ("aabbbccccx") 'a2b3c4x1' momo ("aaa1111") 'a314' momo ("aaabcaax") 'a3b1cla2x1'
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr