Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
input : height
    a
   aaa
  aaaaa
 aaaaaaa
aaaaaaaaa


input : height
aaaaaaaaa
 aaaaaaa
  aaaaa
   aaa
    a


input : height 3 or greater than 3
    a
   a a
  a   a
 a     a
a       a


input : height 3 or greater than 3
a       a
 a     a
  a   a
   a a
    a


What I have tried:

char1 = "a"
num = int(input("enter a number: "))
for i in range(num,0,-1):
  for j in range(i):
    print(char1, end="")
  print()  
Posted
Updated 24-Dec-21 16:11pm

While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
 
Share this answer
 
Quote:
Need solutions in Python for these 4 problems

No, you need to solve the problems.
You are learning and homework is training, nobody can do it for you.
Do you think Usain Bolt asked someone to train for him when he was a beginner ?

We do not do your HomeWork.
HomeWork is not set to test your skills at begging other people to do your work, it is set to make you think and to help your teacher to check your understanding of the courses you have taken and also the problems you have at applying them.
Any failure of you will help your teacher spot your weaknesses and set remedial actions.
Any failure of you will help you to learn what works and what don't, it is called 'trial and error' learning.
So, give it a try, reread your lessons and start working. If you are stuck on a specific problem, show your code and explain this exact problem, we might help.

Try to solve the requirements and if you have a difficulties show your work and tell us what is your exact problem.

Look at this, it may you to understand what you have to do:
input : height
....a
...aaa
..aaaaa
.aaaaaaa
aaaaaaaaa
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900