パスにファイルかフォルダーが存在すればTrue
無ければFalse
1 2 3 |
import os if not os.path.exists('./assets/nyc_taxi.csv'): print('Taxi dataset not found.') |
パスにファイルかフォルダーが存在し、かつ
ファイルであればTrueそうでなければFalse
1 2 3 |
import os if not os.path.isfile('./assets/nyc_taxi.csv'): print('Taxi dataset not found.') |
コメントを残す