Explore Westonci.ca, the premier Q&A site that helps you find precise answers to your questions, no matter the topic. Get quick and reliable solutions to your questions from knowledgeable professionals on our comprehensive Q&A platform. Join our platform to connect with experts ready to provide precise answers to your questions in different areas.
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
Thank you for visiting. Our goal is to provide the most accurate answers for all your informational needs. Come back soon. We appreciate your time. Please come back anytime for the latest information and answers to your questions. Your questions are important to us at Westonci.ca. Visit again for expert answers and reliable information.