본문 바로가기

컴퓨터 팁

온라인 파이썬 실행기 & 반복 문자열 생성 코드

https://www.tutorialspoint.com/execute_python_online.php



* 반복 문자열 생성 코드


str1 = 'http://leejk.net/images/image'
str2 = '.jpg'
for i in range(1,100):
    str3 = str1 + str(i) + str2
    print(str3)