Explore
Pricing
Blog
Customer Support
Enter with code
Create new quiz
The Witch's Magic
Sequencing
High 1-1
Information Technology
리스트
정보T
54
Added question (7/ 20)
Allow incorrect answer
Show answer
public quiz
Save Worksheet
# 1
Multiple Choice
a = [1, 2, 3] print(a[0])
0
1
2
3
# 2
Multiple Choice
a = [1, 2, 3] print(a[2])
1
2
3
# 3
Multiple Choice
b = ['가', '나', '다'] print(b[1])
가
나
다
# 4
Multiple Choice
c = [5, 10, 15, 20] c[1] -= 1 print(c[1])
4
9
14
19
# 5
Multiple Choice
n = [1, 2, 3, 4, 5] print(n[-1])
1
2
3
4
5
# 6
Multiple Choice
k = ['피자', '치킨', '햄버거'] k.append('떡볶이') print(k[-1])
피자
치킨
햄버거
떡볶이
# 7
Multiple Choice
k = ['피자', '치킨', '햄버거', '족발']
k.remove('치킨')
print(k[2])
피자
치킨
햄버거
족발
Share to Google Classroom
Duplicate
Share
Enter