Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Skulpt 我想从 0 到 50 范围内生成 5 个数字的随机列表。这是我正在使用的代码:
import random print(random.sample(range(50), 5))
但它没有运行。
有小费吗?
我不知道为什么它没有:) 但它现在可以:
➜ skulpt git:(master) ✗ ./m run rand.py [40, 44, 23, 36, 42] ----- ➜ skulpt git:(master) ✗ cat rand.py import random print(random.sample(range(50), 5))