Skip to content

Instantly share code, notes, and snippets.

View ozguripekci's full-sized avatar
🎯
Focusing

Özgür Ipekci ozguripekci

🎯
Focusing
  • Vienna, Austria
View GitHub Profile
#Take input from user
fname = input("Please inser file name:")
#try and except
try:
fhand = open(fname)
except:
print("File can not be found", fname)
quit()