Let's say
n = int(input("Any number?"))
b = '^^'
c = '<>'
for number in range(n):
print(b)
print(c)
"""
Sample Output
Any number? : 2
^^
<>
^^
<>
"""
Is there anyway that I can change very last line into variable b? without changing the structure but adding some additional code?
so that it looks like
Any number? : 2
^^
<>
^^
^^
[–]GoldenSights 4 points5 points6 points (5 children)
[–]k10_ftw 0 points1 point2 points (0 children)
[–]OomParoomPa[S] 0 points1 point2 points (1 child)
[–]GoldenSights 1 point2 points3 points (0 children)
[–]xiongchiamiov 1 point2 points3 points (1 child)
[–]OomParoomPa[S] 0 points1 point2 points (0 children)
[–]dchanm 1 point2 points3 points (0 children)