题目7单选题
s1=set("hellohnust"),则集合s1等于( )A. {'e', 'u', 't', 'n', 'h', 'l', 's', 'h ', 'o'}B. {'e', 'u', 't', 'n', 'h', 'l', 'l', ' s', 'o'}C. {'e', 'u', 't', 'n', 'h', 'l', 's', 'o'}D. {'e', 'u', 't', 'n', 'h', 'l', 's', ' ', 'o'}
题目8单选题
tuple(range(2,10,2))返回的结果是( )A. [2,4,6,8]B. (2,4,6,8)C. (2,4,6,8,10)D. [2,4,6,8,10]