python建立訪客記錄

2021-08-11 06:50:44 字數 1026 閱讀 5551

寫乙個程式,提示訪客輸入名字,並給出乙個招呼語,然後將訪客名字寫入guest.txt檔案中作為備份

print("enter 'quit' when you are finished\n")

filename = 'guest.txt'

while

true:

name = input('please enter your name>>>')

if name == 'quit':

break

else:

with open(filename,'a') as file:

file.write(name.title()+'\n')#將訪客寫入的名字改為首字母大寫

print('welcome,'+name.title())

dicision = input('do you want to continue? y/n>>>')

if dicision == 'n':

break

輸入quit可以結束,或者輸入n也可以結束

執行如:

enter 'quit'

when you are finished

please enter your name>>>heiban

welcome,heiban

do you want to continue? y/n>>>y

please enter your name>>>xiangpica

welcome,xiangpica

do you want to continue? y/n>>>y

please enter your name>>>fenbi

welcome,fenbi

do you want to continue? y/n>>>n

>>>

guest.txt檔案為:

heiban

xiangpica

fenbi

使用cdn記錄不到真實訪客IP

參考 windows 伺服器讓iis記錄x forwarded for 文章 linux系統,apache的修改方法 對httpd.conf檔案的以下地方進行修改。原配置 logformat h l u t r s b i i combined logformat h l u t r s b com...

PHP 記錄訪客的瀏覽資訊方法

可以記錄訪客的地理位置,作業系統,瀏覽器,ip,時間和訪問的檔案。1.首先建立乙個comm function.php檔案 獲取客戶端型別,手機還是電腦,以及相應的作業系統型別。param string subject function get os agent else if preg match ...

記錄 建立索引

建立索引 create clustered index riqi person on person date 在person表的date欄位上面建立名為riqi person的 聚集索引 create nonclustered index riqi person on person date 在pe...