Skip to content

Instantly share code, notes, and snippets.

View LNMayfield3's full-sized avatar

LMayfield LNMayfield3

  • Baltimore Maryland
View GitHub Profile
### Keybase proof
I hereby claim:
* I am lnmayfield3 on github.
* I am tohrux (https://keybase.io/tohrux) on keybase.
* I have a public key ASByp2mKVDsaqei2EQXqC0LJHcHtWNuzQs3WU3o5_wAEugo
To claim this, I am signing this object:
### Keybase proof
I hereby claim:
* I am lnmayfield3 on github.
* I am tohrux (https://keybase.io/tohrux) on keybase.
* I have a public key ASByp2mKVDsaqei2EQXqC0LJHcHtWNuzQs3WU3o5_wAEugo
To claim this, I am signing this object:
import datetime # This import the date function
print (datetime.date.today()) # This prints today's date
currentDay= datetime.date.today() #this declares currentDay as avariable that is assigned to datetime
print("Greeting 's to you and yours\n") # greeting to the user and the \n make the program skip to a new line
name =input("Please enter your full name :")#this declares name as avariable that is assigned get the users name by displaying a request on the screen to the user
print (name.lower()) # prints out the users name but controls how it is displayed on the screen .lower() make the users name all lowercase no matter how they type it in
print (name.upper())# prints out the users name but controls how it is displayed on the screen .upper() make the users name all uppercase no matter how they type it in