ฉันมีรหัสหลามง่าย ๆ ที่ค้นหาไฟล์สำหรับสตริงเช่นpath=c:\path
ที่c:\path
ส่วนอาจแตกต่างกันไป รหัสปัจจุบันคือ:
def find_path(i_file):
lines = open(i_file).readlines()
for line in lines:
if line.startswith("Path="):
return # what to do here in order to get line content after "Path=" ?
วิธีง่ายๆในการรับข้อความPath=
คืออะไร?