diff --git a/rib_ribble/algorithms/.keep b/rib_ribble/algorithms/.keep new file mode 100644 index 0000000..e69de29 diff --git a/rib_ribble/assignments/python_fun/dictionary_basics.py b/rib_ribble/assignments/python_fun/dictionary_basics.py new file mode 100644 index 0000000..fd55f17 --- /dev/null +++ b/rib_ribble/assignments/python_fun/dictionary_basics.py @@ -0,0 +1,16 @@ +def me(user): + print "My name is " + user["name"] + print "My age is " + str(user["age"]) + print "My country of birth is " + user["country"] + print "My favorite language is " + user["language"] + + + + + + + + + +user1 = {"name": "rib", "age": 101, "country": "USA", "language": "SQL"} +me(user1) \ No newline at end of file