ventilaar
/
twitter_zuil
Archived
1
Fork 0
This repository has been archived on 2021-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
twitter_zuil/homework PROGA/pe_6_4.py

22 lines
359 B
Python

import datetime
# setup time
vandaag = datetime.datetime.today()
s = vandaag.strftime("%a %d %b %Y %H:%M:%S")
print('Executed on: '+s)
# create file pe_6_4_hardlopers.txt
file = open("pe_6_4_hardlopers.txt", 'a')
# vraag om input
input = input('Hardloper naam? ')
# print text
print(s + ' ' +input+'\n')
# append file
file.write(s + ' ' +input+ '\n')