Commit 1b4b00b9 authored by PUJA RANI's avatar PUJA RANI

readme

parent 493565bb
Group05-Crypto
(Puja Rani, 150050043) (Mangalapally Mounyatha, 150050090) (Talari Rebecca Blessy, 150050097)
I Puja Rani pledge on our honour that I have not given or received any unauthorized assistance on this assignment or any previous task.
I Mangalapally Mounyatha pledge on our honour that I have not given or received any unauthorized assistance on this assignment or any previous task.
I Talari Rebecca Blessy pledge on our honour that I have not given or received any unauthorized assistance on this assignment or any previous task.
Contributions:
Puja Rani-100%
Mangalapally Mounyatha-100%
Talari Rebecca Blessy-100%
Citations:
1.http://www.python-course.eu/lambda.php
2.https://wiki.python.org/moin/HowTo/Sorting
3.http://stackoverflow.com/questions/899103/writing-a-list-to-a-file-with-python
4.http://stackoverflow.com/questions/7138686/how-to-write-a-list-to-a-file-with-newlines-in-python3
5.http://stackoverflow.com/questions/4110891/python-how-to-simply-redirect-output-of-print-to-a-txt-file-with-a-new-line-crea
Interesting Facts:
There must be proper indentation in python in every block.
In taskB, task1 we have to use sum to add the string, we cannot just use append.
Extra Credits:
E.1 Tuples is a sequence of elements but unlike list, tuples cannot be changed, that is, they are immutable. Also tuples use paranthesis where as list uses square bracket. Values in a tuple can be accessed but they cannot be changed.
When we try to append to a tuple, an error is flagged saying a tuple does not have append function.
This is the consequence of the property of tuple that it cannot be changed. Also removing individual tuple elements is not possible.
E.2 If tuples have elements which are lists,we are able to add to these lists.
But this does not contradict the above observation because the tuple stores the reference to the list, not the list itself. Hence it is possible to append to the lists present in the tuple and still not make any changes to the tuple itself.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment