“Sprawdź, czy plik to TXT Python” Kod odpowiedzi

Python Sprawdź, czy plik istnieje

#using pathlib
from pathlib import Path

file_name = Path("file.txt")
if file_name.exists():
    print("exists") 
else:
    print("does not exist") 
Fun Bee

Sprawdź, czy plik to TXT Python

Assuming m is a string, you can use endswith:

if m.endswith('.mp3'):
...
elif m.endswith('.flac'):
...
To be case-insensitive, and to eliminate a potentially large else-if chain:

m.lower().endswith(('.png', '.jpg', '.jpeg'))
Quaint Quelea

Odpowiedzi podobne do “Sprawdź, czy plik to TXT Python”

Pytania podobne do “Sprawdź, czy plik to TXT Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu