I need to create a function generateString(char, val)
that returns a string with val number of char characters concatenated together. I'm new to coding and am having some trouble with defining my own functions
I have tried returning a number of different return methods but can't figure this one out.
import sys
character= sys.argv[1]
count= int(sys.argv[2])
def generateString(char, val):
When I try to output the results I'm getting nothing.