сhrome --remote-debugging-port=9222 --user-data-dir="~/ChromeProfile"
chrome_options = Options()
chrome_options.add_experimental_option("debuggerAddress", "127.0.0.1:9222")
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options)
data = json.loads(response.text)
# Import JSON module
import json
# Define JSON string
jsonString = '{ "id": 121, "name": "Naveen", "course": "MERN Stack"}'
# Convert JSON String to Python
student_details = json.loads(jsonString)
# Print Dictionary
print(student_details)
# Print values using keys
print(student_details['name'])
print(student_details['course'])
arr = [a1,a2,...,an]
y=next((x for x in arr if x!=1), False)
print("There are not only 1s in the array" if y else "There are only 1s in the array")