Skip to content

Commit 156acef

Browse files
committedMar 18, 2020
added answers for PYTHON Sets exercises
1 parent 6a3ccbf commit 156acef

File tree

5 files changed

+59
-0
lines changed

5 files changed

+59
-0
lines changed
 
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""
2+
from PYTHON Sets: Exercise 1 ( https://www.w3schools.com/python/exercise.asp?filename=exercise_sets1 )
3+
4+
question:
5+
Check if "apple" is present in the fruits set.
6+
7+
fruits = {"apple", "banana", "cherry"}
8+
if "apple" __ fruits:
9+
print("Yes, apple is a fruit!")
10+
"""
11+
fruits = {"apple", "banana", "cherry"}
12+
if "apple" in fruits:
13+
print("Yes, apple is a fruit!")
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
from PYTHON Sets: Exercise 2 ( https://www.w3schools.com/python/exercise.asp?filename=exercise_sets2 )
3+
4+
question:
5+
Use the add method to add "orange" to the fruits set.
6+
7+
fruits = {"apple", "banana", "cherry"}
8+
____________________
9+
"""
10+
fruits = {"apple", "banana", "cherry"}
11+
fruits.add("orange")
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""
2+
from PYTHON Sets: Exercise 3 ( https://www.w3schools.com/python/exercise.asp?filename=exercise_sets3 )
3+
4+
question:
5+
Use the correct method to add multiple items (more_fruits) to the fruits set.
6+
7+
fruits = {"apple", "banana", "cherry"}
8+
more_fruits = ["orange", "mango", "grapes"]
9+
__________________________
10+
"""
11+
fruits = {"apple", "banana", "cherry"}
12+
more_fruits = ["orange", "mango", "grapes"]
13+
fruits.update(more_fruits)
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
from PYTHON Sets: Exercise 4 ( https://www.w3schools.com/python/exercise.asp?filename=exercise_sets4 )
3+
4+
question:
5+
Use the remove method to remove "banana" from the fruits set.
6+
7+
fruits = {"apple", "banana", "cherry"}
8+
_______________________
9+
"""
10+
fruits = {"apple", "banana", "cherry"}
11+
fruits.remove("banana")
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
from PYTHON Sets: Exercise 5 ( https://www.w3schools.com/python/exercise.asp?filename=exercise_sets5 )
3+
4+
question:
5+
Use the discard method to remove "banana" from the fruits set.
6+
7+
fruits = {"apple", "banana", "cherry"}
8+
________________________
9+
"""
10+
fruits = {"apple", "banana", "cherry"}
11+
fruits.discard("banana")

0 commit comments

Comments
 (0)
Please sign in to comment.