Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All Python Assignments of Artificial Intelligence Course

## Part 2
Coding Questions:
1. Write a Python program to create a tuple with different data types.
1. Write a Python program to create tuple with different data types.
2. Write a Python program to print all unique values in a dictionary. Go to the editor
Sample Data : [{"V":"S001"}, {"V": "S002"}, {"VI": "S001"}, {"VI": "S005"},
{"VII":"S005"}, {"V":"S009"},{"VIII":"S007"}]
Expand Down Expand Up @@ -42,7 +42,7 @@ Take a list, say for example this one:
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
and write a program that prints out all the elements of the list that are less than 5.

Extras:
Extra's:

1.1. Instead of printing the elements one by one, make a new list that has all the
elements less than 5 from this list in it and print out this new list.
Expand Down Expand Up @@ -170,7 +170,7 @@ Optional additions:
When the player wins or loses, let them start a new game.
Rather than telling the user "You have 4 incorrect guesses left", display some picture art for
the Hangman. This is challenging - do the other parts of the exercise first!
Your solution will be a lot cleaner if you make use of functions to help you!
Your solution will be a lot cleaner if you make use of functions to help you



Expand Down