Datasets:

Modalities:
Text
Formats:
text
Size:
< 1K
Libraries:
Datasets
License:
File size: 250 Bytes
998b6cc
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
def describe(x):
    if x == 1:
        print("one")
    elif x == 2:
        print("two")
    elif isinstance(x, str):
        print("a string")
    else:
        print("something else")

describe(1)
describe(2)
describe("hello")
describe([1, 2, 3])