Question: Write a function that takes two parameters: a number of repetitions ( a positive integer ) and a symbol ( as a single - character

Write a function that takes two parameters: a number of repetitions (a positive integer) and a symbol (as a single-character string). Your function should return a string that consists of given characters, repeated a given number of times. Hint: Lecture tells you how to do it. def first_pattern(repeat, symbol): """ Creates a string of symbols --- Parameters: repeat: positive integer symbol: a single character --- Returns a string of symbols repeated a given number of times. >>> first_pattern(3,'*')'***'>>> first_pattern(6,'$')'$$$$$$'"""

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!