Edit Game
Lập trình viên tài ba
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   4  Close
Kết quả của đoạn mã sau là gì? numbers = [10, 20, 30, 40] print(numbers[1] + numbers[2])
60
Trong Python, đâu là cách khai báo biến hợp lệ?
x = 10
Cho đoạn mã sau, kết quả in ra là gì? colors = ["red", "green", "blue"] print(colors[-2])
green
Đâu là cách khai báo danh sách đúng trong Python?
myList = [1, 2, 3]