“Extensão do arquivo python” Respostas de código

Extensão de arquivo de verificação python

# Checking for single extension (.txt) of file
if file.endswith(".txt"):
  # do something
  
# Checking multiple extensions (.txt, .pdf, .mp3, ...)
if file.endswith((".txt", ".pdf", ".mp3")):
  # do something
Soggy Boi

Extensão do arquivo python

>>> import os
>>> filename, file_extension = os.path.splitext('/path/to/somefile.ext')
>>> filename
'/path/to/somefile'
>>> file_extension
'.ext'
Busy Boar

Python Obtenha extensão de arquivo do caminho

import os.path
extension = os.path.splitext(filename)[1]
Thankful Turtle

Obtenha Python de extensão de arquivo

import pathlib

print(pathlib.Path('yourPath.example').suffix) # '.example'
#or 
import os
filename, file_extension = os.path.splitext('/path/to/somefile.ext')
Bug Killer

Extensão do arquivo python

.py or .pyt
Lucky Louse

Respostas semelhantes a “Extensão do arquivo python”

Perguntas semelhantes a “Extensão do arquivo python”

Mais respostas relacionadas para “Extensão do arquivo python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código