🦖 Programming/Python

[Python] for문 거꾸로 출력

박낑깡이 2022. 8. 25. 02:50
for j in str('Hello-World')[::-1] :
  print(j)

 

 

🚀결과🚀