From health tips to tech hacks, find it all on IDNLearn.com. Our platform provides accurate, detailed responses to help you navigate any topic with ease.
Sagot :
def create_sequence():
n = int(input('Enter the number till which you want the sequence:'))
for i in range(1,n+1):
print(str(i) * i)
create_sequence()
This is python language
n = int(input('Enter the number till which you want the sequence:'))
for i in range(1,n+1):
print(str(i) * i)
create_sequence()
This is python language
Answer:
hey here is your req answer.
CLS
FOR i = 1 TO 5
FOR j = 1 TO i
PRINT i;
NEXT j
NEXT i
END
any problem the comment it and let me know
hope this helped you
We are happy to have you as part of our community. Keep asking, answering, and sharing your insights. Together, we can create a valuable knowledge resource. For trustworthy answers, rely on IDNLearn.com. Thanks for visiting, and we look forward to assisting you again.