191. Which method removes a specified element from a set?
192. Which of these is a valid string method in Python?
193. What is the result of: print(type({}))?
194. Which function is used to get both index and value while iterating?
195. Which of these will create a list of numbers from 1 to 5?
196. What is the output of: print([] == [])?
197. What is the correct way to check the data type of a variable?
198. What does the `continue` keyword do in a loop?
199. What is the result of: print('a' in 'apple')?
200. Which method is used to convert all characters in a string to lowercase?