MCPcopy Index your code
hub / github.com/geekcomputers/Python / input_par

Function input_par

meme_maker.py:6–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4
5
6def input_par():
7 print("Enter the text to insert in image: ")
8 text = str(input())
9 print("Enter the desired size of the text: ")
10 size = int(input())
11 print("Enter the color for the text(r, g, b): ")
12 color_value = [int(i) for i in input().split(" ")]
13 return text, size, color_value
14 pass
15
16
17def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected