“File teks Python berisi” Kode Jawaban

cara memeriksa kata tertentu dalam file teks menggunakan python

file = open("search.txt")
    print(file.read())
    search_word = input("enter a word you want to search in file: ")
    if(search_word in file.read()):
        print("word found")
    else:
        print("word not found")
Faithful Fowl

File teks Python berisi

from pathlib import Path

for file_path in Path('src').glob('**/*.c'):
    print(file_path) # do whatever you need with these files
DreamCoder

File teks Python berisi

import os
import fnmatch


def recursive_glob(treeroot, pattern):
    results = []
    for base, dirs, files in os.walk(treeroot):
        goodfiles = fnmatch.filter(files, pattern)
        results.extend(os.path.join(base, f) for f in goodfiles)
    return results
DreamCoder

Jawaban yang mirip dengan “File teks Python berisi”

Pertanyaan yang mirip dengan “File teks Python berisi”

Lebih banyak jawaban terkait untuk “File teks Python berisi” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya