This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This little script can generate a valid .vcf (vCard). It will ask you to fill | |
in some details and write the vcf-file. | |
""" | |
def main(): | |
print('Please enter contact details:') | |
first_name = input(' - First name : ') | |
last_name = input(' - Last name : ') | |
email = input(' - E-mail address : ') |