0

How to print this?

print(8*"j"\n8*"j") why this is not printing jjjjjjjj jjjjjjjj ?I also tried print("8*"j"\n8*"j"") but not working.how can I print this without using print twice or using loop?

12th Aug 2019, 8:05 AM
Iqbal Khan
Iqbal Khan - avatar
1 Odpowiedź
+ 6
print('j'*8 + '\n' + 'j'*8)
12th Aug 2019, 8:12 AM
blACk sh4d0w
blACk sh4d0w - avatar