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 4MQ4
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT