+ 1
I need your help
Why can't I print pattern K with * https://code.sololearn.com/c4OdLiLwDbYw/?ref=app
4 Answers
+ 6
You mean K?
https://code.sololearn.com/caF6e53BO3yD/?ref=app
+ 3
Thnq so much...
+ 1
https://code.sololearn.com/c4OdLiLwDbYw/?ref=app.
Share link in description place. Not in question. See it won't work there...
And what is 'k' there, you mean?
Edit : Thanks for edit.
Edit : Nidhiya Chinju đ
Adding 1 more space make it to look clear..đ
for i in range(7):
for j in range(7):
if j==0 or i-j==3 or i+j==3:
print("*",end="")
else:
print(end=" ")
print()
+ 1
I meant to print a pattern like K