+ 2
Help me with this pattern as I am not getting the required output
4 Respuestas
+ 5
Line13
ch=chr(x-j)
+ 3
for i in range(5,0,-1):
x=69
for j in range (0,i):
ch=chr(x-j)
print(ch,end="")
print()
Please assign x=69 inside the first loop for your desired output
and made the changes in line 13 as said by Oma Falk
I hope it helps🙂🙂
+ 1
Oma Falk thanks for the suggestion
+ 1
RAJESH SAHU thank you for the suggestion