Skip to content

Instantly share code, notes, and snippets.

@yazilimfuryasi
Created September 14, 2020 20:42
Show Gist options
  • Save yazilimfuryasi/6fabf949187949adeb657eeb4cb72d29 to your computer and use it in GitHub Desktop.
Save yazilimfuryasi/6fabf949187949adeb657eeb4cb72d29 to your computer and use it in GitHub Desktop.
Sınırsız dosya oluşturma
import os
s = 1
limit = 5000 #Kaç adet oluşturacak
for a in range(limit):
s += 1
open(str(s)+'dosya.txt', 'w')
@nisancigokmen
Copy link

thanks bro :=)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment