从字符串"abcdefghij"中随机选取4个字符的Python代码是:
A、from random import*choice("abcdefghij",4);
B、from random import*shuffle("abcdefghij",4);
C、from random import*sample("abcdefghij",4);
D、给出的选项都不正确
发布时间:2025-08-22 16:50:18
A、from random import*choice("abcdefghij",4);
B、from random import*shuffle("abcdefghij",4);
C、from random import*sample("abcdefghij",4);
D、给出的选项都不正确