Skip to content

Commit cfe67f6

Browse files
Clean code
1 parent 2d9deba commit cfe67f6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

new_pattern.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ def main():
1212
lines = int(input("Enter no.of lines: "))
1313
pattern(lines)
1414

15-
def pattern(lines):
16-
t = 1
17-
for i in reversed(range(lines)):
18-
nxt_pattern = "$"*t
19-
pattern = "@"*(i+1)
20-
final_pattern = pattern + " n " + nxt_pattern
21-
print(final_pattern)
22-
t = t +1
15+
def pattern(lines):
16+
t = 1
17+
for i in range(lines,0,-1):
18+
nxt_pattern = "$"*t
19+
pattern = "@"*(i)
20+
final_pattern = pattern + " " + nxt_pattern
21+
print(final_pattern)
22+
t = t +1
2323

2424
if __name__ == "__main__":
25-
main()
25+
main()

0 commit comments

Comments
 (0)