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?
1 Odpowiedź
+ 6
print('j'*8 + '\n' + 'j'*8)
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?