第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

返回我打開(kāi)程序的 2 次之間的時(shí)間(以秒為單位)

返回我打開(kāi)程序的 2 次之間的時(shí)間(以秒為單位)

溫溫醬 2023-05-23 16:28:34
y我想收到我在 python shell 中鍵入的兩次運(yùn)行之間的時(shí)間(以秒為單位) 。很抱歉之前我沒(méi)有具體說(shuō)明我想要它是什么。基本上這是我正在測(cè)試在另一個(gè)大程序(比這個(gè)大)中實(shí)現(xiàn)的程序。這是我想要的輸出:首先,我將運(yùn)行該程序,它會(huì)詢問(wèn)我是否要借用,然后單擊y。之后,我將再次運(yùn)行該程序,它會(huì)要求我返回,我將再次單擊y,它應(yīng)該以秒為單位返回我借用的時(shí)間。循環(huán)將繼續(xù)。這是我需要的圖書(shū)館管理系統(tǒng)程序。import timeimport csvdata_backup1=[]f=open("a1.csv",'r')csvr=csv.reader(f)for line in csvr:    #copying data into a temporary storage area from csv file    print(line)    data_backup1.append(line)print(csvr,"this is csvr")    f.close()l=[]if len(data_backup1)==0:    f=open("a1.csv",'w')    csvw=csv.writer(f)    a=input("Enter y to borrow")    if a=="y":        m="borrowing"        l.append(m)        print(l)        print("this is l")        n=time.time()        l.append(n)        print(l)        print("this is l")        csvw.writerow(l)        f.close()    f.close()        f=open("a1.csv",'r')    csvr=csv.reader(f)    for line in csvr:        print(line)        else:    a=input("Enter y to return")    if a=="y":        c=[]        f=open("a1.csv",'r')        csvr=csv.reader(f)        c=csvr[1]        print(c,"this is c")            b=c[1]        print(b,"this is b")        b=int(b)        print(time.time()-b)        f.close()        f=open("a1.csv",'w')        f.close()我想得到一些建議。這是我在兩次運(yùn)行之間實(shí)際得到的。請(qǐng)注意,我已經(jīng)創(chuàng)建了a1.csv.
查看完整描述

1 回答

?
萬(wàn)千封印

TA貢獻(xiàn)1891條經(jīng)驗(yàn) 獲得超3個(gè)贊

試試下面。對(duì)于問(wèn)題 1:您需要在打開(kāi)文件進(jìn)行寫(xiě)入時(shí)添加 - newline=''。對(duì)于第二個(gè)問(wèn)題:reader 對(duì)象需要先轉(zhuǎn)換為列表,然后才能與下標(biāo)一起使用。


import csv

import os

import time

data_backup1=[]

l=[]

file_exists = os.path.exists('a1.csv')

if file_exists:

    f=open("a1.csv",'r')

    csvr=csv.reader(f)

    for line in csvr:

        #copying data into a temporary storage area from csv file

        print(line)

        data_backup1.append(line)

    print(csvr,"this is csvr")

    f.close()


if len(data_backup1)==0:

    f=open("a1.csv",'w',newline='')

    csvw=csv.writer(f)

    a=input("Enter y to borrow")

    if a=="y":

        m="borrowing"

        l.append(m)

        print(l)

        print("this is l")

        n=round(time.time())

        l.append(n)

        print(l)

        print("this is l")

        csvw.writerow(l)

        f.close()

    f.close()

    f=open("a1.csv",'r')

    csvr=csv.reader(f)

    for line in csvr:

        print(line)

else:

    a=input("Enter y to return")

    if a=="y":

        c=[]

        f=open("a1.csv",'r')

        csvr=csv.reader(f)

        line=list(csvr)

        c=line[0]

        print(c,"this is c")

        b=c[1]

        print(b,"this is b")

        b=int(b)

        print(round(time.time())-b)

        f.close()

        f=open("a1.csv",'w')

        f.close()


查看完整回答
反對(duì) 回復(fù) 2023-05-23
  • 1 回答
  • 0 關(guān)注
  • 146 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)