random隨機函式方法和生成時間檔案的方法

2021-10-09 11:47:49 字數 1410 閱讀 8197

random隨機函式

import random

randn =

str(random.randint(0,

100000))

us =

"cdtest_"

+randn#寫不重名的使用者名稱

use = randn+

"@163.com"

#不重名的郵箱之類的

#當前時間作為檔名,還會出現重複的問題嗎?report-20200914102721.html

import time導包

defmylog

(*args)

:#不定長引數

timenow=time.strftime(

"%y%m%d %h%m%s"

)#生成現在時間的檔案

with

open

(r"./seleniumtest/mylog.log"

,"a"

,encoding=

"utf-8"

)as f:

#開打乙個可追加寫入的檔案

f.write(timenow)

for i in args:

#迴圈依次寫入

f.write(

","+i)

#每個引數和,做拼接

f.write(

"\n"

)#不換行寫入

if __name__ ==

'__main__'

: mylog(

"d:\python test\seleniumtest\ss.py"

,"excel01.py"

,"預期值"

,"實際值"

,"用例測試未通過"

)#生成報告的方法和把所給引數依次寫入生成檔案

random 隨機函式

randomize 是c函式庫提供的乙個函式,功能給產生隨機數的進行初始化。rand 能產生隨機數,如不先呼叫randomize 進行初始化,每次產生的可能都是同乙個數。函式名 randomize 功 能 初始化隨機數發生器 用 法 void randomize void randomize 是c函...

random隨機函式

1 verilog系列 如何 random隨機數 qq.com 1 功能 根據指定的種子 可以不指定種子 產生乙個有符號的32位整型偽隨機數 2 使用 random seed 或 random 或 random random seed n n 0 可實現產生範圍為 n 1 n 1 的整數 1.1 r...

Random生成隨機數

random有兩個常用的建構函式,乙個是無參的,乙個是有參的,先來看一段 及執行結果 public class randomtest for int i 0 i 3 i 執行結果如下 無參執行結果 1692516565 無參執行結果 2111480651 無參執行結果 1485452568 有參執行...