py py輸入判斷 字典

2021-08-01 08:18:54 字數 795 閱讀 6756

1.

dict = 

#預設返回none

print dict.get('names')

#可以自定義返回hi

print dict.get('names','hi')

2.列印選單 輸入選項判斷選項是否合法

import sys

def menu():

print '''

1,增加

2,刪除

3,修改

4,查詢

5,顯示所有

6,退出程式

'''op=raw_input("請輸入(1/2/3/4/5/6)> ")

return op

def txl_add():

print "增加"

def txl_error():

print '當前的輸入不在選項內,請重新輸入'

def txl_exit():

sys.exit(0)

ops=

def main():

while true:

op=menu()

ops.get(op,txl_error)()

3,連線資料庫

dbconfig.py

imoprt mysqldb

dbconfig=

conn=mysqldb.connet(**dbconfig)

cursor=conn.cursor()

字典序(輸入OR不輸入)

include includeint main 定義指標陣列,5個元素分別指向5個字串的首位址 int number 5 sort name,number 對字串進行排序,選擇排序的方法 print name,number return 0 void sort char name,int n voi...

如何判斷字典a在字典b中

todo set的issubset方法,a.issubset b 判斷集合a的所有元素是否包含在集合b中 a b aa set a.items print aa bb set b.items print bb print aa.issubset bb 上面方法看似沒什麼毛病,但是這裡會存在乙個問題,...

判斷輸入是否合法

一 判斷輸入是否為數字 通常使用方法1和3,方法2和4無法保證一定能判斷正確。1 函式isdigit 表頭檔案 include 定義函式 int isdigit char c 函式說明 檢查引數c是否為阿拉伯數字0到9。返回值若引數c為阿拉伯數字,則返回true,否則返回null 0 2 當使用ci...