100일 간의 코드: 2022년을 위한 완전한 Python Pro 부트캠프 - 24일차(파일, 디렉터리 및 경로)
with open("high_score.txt", mode="a") as file:
contents = file.read()
print(contents)
# Absolute path
# with open("/Users/Tumatauenga/OneDrive/Desktop/my_file.txt") as file:
# contents = file.read()
# print(contents)
# Relative path
with open("../../../OneDrive/Desktop/my_file.txt") as file:
contents = file.read()
print(contents)
main.py
Invitation_names.txt
starting_letter.txt
PLACEHOLDER = "[name]"
with open("./Names/invited_names.txt") as names_file:
names = names_file.readlines()
print(names)
with open("./Input/Letters/starting_letter.txt") as letter_file:
letter_contents = letter_file.read()
for name in names:
stripped_name = name.strip()
new_letter = letter_contents.replace(PLACEHOLDER, stripped_name)
with open(f"./Output/ReadyToSend/letter_for_{stripped_name},txt", mode="w") as completed_letter:
completed_letter.write(new_letter)
아앙
주코
아파
카타라
소카
모모
이로 삼촌
탑
친애하는 [이름],
이번 토요일 내 생일에 당신을 초대합니다.
당신이 그것을 만들 수 있기를 바랍니다!
마이크
Reference
이 문제에 관하여(100일 간의 코드: 2022년을 위한 완전한 Python Pro 부트캠프 - 24일차(파일, 디렉터리 및 경로)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mike_kameta_aed62d48c2d0f/100-days-of-code-the-complete-python-pro-bootcamp-for-2022-day-24-file-directories-and-paths-f4h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)