第乙個python小實驗
前言作為乙個工作1年的linux運維搬磚師來說,發現沒點開發能力真的是不好混啊。於是下定決心學習python!
直接上剛寫的語句(大神莫鄙視)
通過控制台輸入乙個賬號密碼,若輸入的賬號密碼是定義的則true,若錯誤將錯誤密碼儲存到使用者、密碼檔案
import getpass
user='yang' #定義乙個使用者
password='123' #定義乙個密碼
userfile='fuser' #存使用者名稱的檔案
pasfile='fpas' #存密碼的檔案
createfile1=open(userfile,'a+') #建立檔案
createfile2=open(pasfile,'a+')
inputuser=input("輸入使用者名稱:")
inputpassword=getpass.getpass("輸入密碼:")
if inputuser == 'yang' and inputpassword == '123':
print("true")
else:
print(inputuser)
createfile1.write(inputuser + '\n')
print(inputpassword)
createfile2.write(inputpassword + '\n')
擴充套件延伸
getpass模組 :作用是在輸入密碼是可以「隱藏」,類似於linux登入是輸入password效果一樣
open()函式:用於開啟乙個檔案,建立個file物件。(
python第乙個程式設計 第乙個 Python 程式
簡述 安裝完 python 後,windows 中 開始選單或安裝目錄下就會有 idle 開發 python 程式的基本 ide 整合開發環境 幫助手冊 模組文件等。linux 中 只需要在命令列中輸入 python 命令即可啟動互動式程式設計。互動式程式設計 互動式程式設計不需要建立指令碼檔案,是...
python的第乙個小程式
coding utf 8 import sys from htmlparser import htmlparser reload sys encoding sys.getdefaultencoding if not encoding utf 8 sys.setdefaultencoding utf ...
第乙個小程式
2.建立pages目錄檔案 作用是放各個頁面的 3.建立頁面 給頁面起名字,並建立四個檔案 1 js 邏輯的實現 2 json 負責標題欄和一些狀態列 3 wxml 頁面文字 4 wxss 頁面樣式 4.把內容元素封裝在view內部,寫法 內容 5.這節課需要用到三個元件 文字 按鈕 1 2 文字 ...