Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
title course
Q25
S2 - Intermediate Python Programming

建立模組 MyRandom,裡面包含這些函式:

  • myrandom():呼叫 random 模組的 random() 函式並回傳數值。
  • myrandint(a, b):呼叫 random 模組的 randint() 函式並回傳 ab 之間的隨機數值。

另撰寫一個程式,匯入 MyRandom 並呼叫 myrandommyrandint 函式。