Python TQC考題206_等級判斷, if 條件1:動作1 elif 條件2:動作2, else: 動作n,==為邏輯判斷式,=為指定 by 儲蓄保險王 · 2022-04-27 #Python TQC考題206_等級判斷 score=eval(input()) if score >= 80: print(“A”) elif score >= 70: print(“B”) elif score >= 60: print(“C”) else: print(“F”) Spyder執行結果 相關文章Python: 淺拷貝(shallow copy) vs 深拷貝(deep copy),什麼時候需要用深拷貝? import copy ; b = copy.deepcopy(a)Python: 如何將pandas.DataFrame從寬資料轉為長資料? df_melt = pd.melt(df, id_vars=['name', 'gender'], var_name='time', value_name='score') ; seaborn繪圖Python: matplotlib如何設定刻度標籤的字體大小? ax.tick_params (axis='both', labelsize=None) ; 那些參數可以設為None?Python TQC考題606: 檢驗學號Python GUI: 如何使用tkinter建立垃圾桶icon (Unicode: "\U0001F5D1")的Button?一按就刪除掉Label + Entry + Button ; trash_icon = tk.PhotoImage( file = trash_icon_path)Python如何使用chardet.detect() 偵測編碼(encoding)? #"charset(字符集) detection"Python機器學習: 決策樹 (DecisionTreeClassifier) ; from sklearn.tree import DecisionTreeClassifier ; tree = DecisionTreeClassifier(criterion = "gini") #criterion = “entropy” #criterion: 標準,準則Python:如何使用 pyautogui 進行自動點擊?Python 非監督式機器學習: 關聯規則; 使用 mlxtend ; 購物欄分析 ; from mlxtend.preprocessing import TransactionEncoder
0 Python 非監督式機器學習: 距離導向聚類法(k-Means 演算法); 使用 scikit-learn ; 學生分群 ; from sklearn.cluster import KMeans 2023-01-06
0 Python: 如何用tkinter做出Listbox列表選擇框 GUI? menu = tk.StringVar(root, value= tuple( cable.items() ) ) ; listbox = tk.Listbox (root, listvariable = menu) 2023-06-06
近期留言