79435214

Date: 2025-02-13 06:26:17
Score: 1
Natty:
Report link
Column = int(input("How many characters you want in a row: "))

Row = int(input("How many rows you want: ")) Num = 97 # ASCII value of 'a'

for i in range(Row): for j in range(Column): print(chr(Num + i + j), end="") print()

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Krish Satasiya