File tree 5 files changed +59
-0
lines changed
W3School-PyExercises/PY-Sets
5 files changed +59
-0
lines changed Original file line number Diff line number Diff line change
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!" )
Original file line number Diff line number Diff line change
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" )
Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change
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" )
Original file line number Diff line number Diff line change
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" )
You can’t perform that action at this time.
0 commit comments