w3resource

Python: Find a string consisting of space-separated characters with given counts

Python Programming Puzzles: Exercise-74 with Solution

Write a Python program to find a string consisting of space-separated characters with given counts.

Input: {'f': 1, 'o': 2}
Output:
f o o

Input: {'a': 1, 'b': 1, 'c': 1}
Output:
a b c

Visual Presentation:

Python: Find a string consisting of space-separated characters with given counts.

Sample Solution:

Python Code:

# License: https://bit.ly/3oLErEI

# Define a function named 'test' that takes a dictionary of character counts as input
def test(counts):
    # Use a nested loop to generate a string with characters repeated according to their counts
    return " ".join(c for c, i in counts.items() for _ in range(i))

# Example 1
strs1 = {"f": 1, "o": 2}
print("Original string:", strs1)
print("String consisting of space-separated characters with given counts:")
print(test(strs1))

# Example 2
strs2 = {"a": 1, "b": 1, "c": 1}
print("\nOriginal string:", strs2)
print("String consisting of space-separated characters with given counts:")
print(test(strs2))

Sample Output:

Original string: {'f': 1, 'o': 2}
String consisting of space-separated characters with given counts:
f o o

Original string: {'a': 1, 'b': 1, 'c': 1}
String consisting of space-separated characters with given counts:
a b c

Flowchart:

Flowchart: Python - Find a string consisting of space-separated characters with given counts.

Python Code Editor :

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Find a string contains a vowel between two consonants, in a given string.
Next: Reorder numbers in increasing/decreasing order based on whether the first plus last element is even/odd.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.