Score: 0 / 0 answered
Progress: 0 of 817 qs
time elap: 00:00
Question 1: What is the output of the following code snippet in Python?
from itertools import combinations data = 'ABC' result = list(combinations(data, 2)) print(result)
Subject: Functional Programming in Python ntermediate Level
Difficulty: Hard