728x90
어디서 봤던 것인지 모르겠지만, 파일이름같은것을 입력받으면 다른 문자열뒤에다가 추가시켜주는 python 스크립트이다.
아래 예제를 보면 금방 이해할 듯.
$ python spli.py
Enter the file ex) comm.php, head.php...# aa, bb
bb
['/var/www/aa', '/var/www/bb']
소스 시작
#! /usr/bin/python
applyfile=[]
home='/var/www'
file=raw_input("Enter the file ex) comm.php, head.php...# ")
data_list = file.split(',')
print data_list[1]
for fs in file.split(','):
filename=fs.strip()
if filename=='*':
applyfile.append(filename)
else:
applyfile.append(home+"/"+filename)
print applyfile
소스 끝
'Engineering > Python' 카테고리의 다른 글
driver.get(link) AttributeError: 'NoneType' object has no attribute 'get' 해결 (1) | 2023.11.13 |
---|---|
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc0 in position 4: invalid start byte 해결 (0) | 2023.11.10 |
'ChromeOptions' object has no attribute 'headless' 해결 (1) | 2023.11.08 |
undetected_chromedriver ModuleNotFoundError distutils 해결 (0) | 2023.11.07 |
Python JWT 토큰 생성 및 검증 (0) | 2021.05.06 |