write a program that creates giant letter A. Allow the user to specify how large the letter should be | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

write a program that creates giant letter A. Allow the user to specify how large the letter should be

example: input = 5 * * * * * * * * * * * *

31st Oct 2021, 3:52 AM
GRYM
GRYM - avatar
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)
31st Oct 2021, 1:16 PM
Chrisi
Chrisi - avatar
0
Where is your solution?
31st Oct 2021, 4:33 AM
A͢J
A͢J - avatar
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...
31st Oct 2021, 12:15 PM
Chrisi
Chrisi - avatar
- 1
please help how to code it😅
31st Oct 2021, 1:03 PM
GRYM
GRYM - avatar