0 0 Minni Asked: March 24, 20222022-03-24T14:49:56+05:30 2022-03-24T14:49:56+05:30In: Python WAP in Python to print * ** *** **** ***** 0 0 WAP in Python to print * ** *** **** ***** programming in pythonpythonwap to print * ** *** **** ***** Share Facebook 2 Answers Voted Oldest Recent Luxx 2022-03-24T14:53:13+05:30Added an answer on March 24, 2022 at 2:53 pm This answer was edited. https://replit.com/@lakshrajj/mstlabquestion1 n = int(input("Enter Number : ")) for i in range(0, n): for j in range(0, i+1): print("*",end="") print("") I'M ADMIN 2022-03-24T15:50:53+05:30Replied to answer on March 24, 2022 at 3:50 pm FOR ERROR-FREE CODE YOU CAN UPLOAD THE SAME CODE IN TXT WHICH CAUSE NO IndentationError. Leave an answerCancel replyYou must login to add an answer. Username or email* Password* Remember Me! Forgot Password?
https://replit.com/@lakshrajj/mstlabquestion1
n = int(input("Enter Number : "))
for i in range(0, n):
for j in range(0, i+1):
print("*",end="")
print("")
FOR ERROR-FREE CODE YOU CAN UPLOAD THE SAME CODE IN TXT
WHICH CAUSE NO IndentationError.