- 2
write a program that creates giant letter A. Allow the user to specify how large the letter should be
example: input = 5 * * * * * * * * * * * *
4 Answers
+ 2
well youd pretty much havto define each size to a variable like : a = "A"
b = "(string for bigger A)"
c = "(string for 3rd biggest A)"
d =...
and so on
and then just write:
x = input("number from 1 to 4:")
if x == 1:
print(a)
elif x ==2:
print(b)
elif x ==3:
print(c)
0
Where is your solution?
0
Pretty sure you would havto make different codes for each one: like how 1 big A looks, 2 big A looks, 3 big A looks basically for all inputs youd havto create your own output and then just get ex. input 4 and iutput the A you made for 4...
- 1
please help how to code itđ