python

python第一課

python語言優點php

  • python少的多的代碼寫出程序,(縮減代碼量)C++/php/java/ruby
  • python應用範圍,Linux和macOS自帶python解釋器;web;3D動畫;雲計算;企業應用ERP/pro
  • python3經常使用語法
  • 面向對象編程思惟
  • 運用模塊進行編程
  • 遊戲編程
  • 計算機仿真(模擬器(快速計算結果))
  • 從0開始是全部編程語言約定俗稱的

學習的捷徑

課後練習fishc.com.cn/forum-243-1…

  • 驗證例子
  • 課後實踐
  • 擅用搜索
  • 學會放鬆

change the world by program(讓編程改變世界)

  • python下載<www.python.org/>
  • IDLE是一個python Shell,shell的意思就是「外殼」,基本上來講,就是一個經過鍵入文本與程序交互的途徑
  • 表明提示符,等待輸入python指令html

python第二節課

pycharm證書過時

請問Python如何實現將列表:['a','a','b','a','b','c']輸出爲字典:{'a':3,'b':2,'c':1}? 方法一java

str_list = ['a', 'a', 'b', 'a', 'b', 'c']
dic = {}
for name in str_list:
    result = dic.get(name, -1)
    if result == -1:
        dic[name] = 1
    else:
        dic[name] = dic[name] + 1
print(dic)
複製代碼

方法二python

str_list = ['a', 'a', 'b', 'a', 'b', 'c']
dic = {}
for i in str_list:
    if str_list.count(i) >= 1:
        dic[i] = str_list.count(i)
print(dic)
複製代碼

方法三web

str_list = ['a', 'a', 'b', 'a', 'b', 'c']
s = set(str_list)
d = dict.fromkeys(s, 0)
for i in s:
    d[i] = str_list.count(i)
print(d)
複製代碼

自動化測試

  • 問題報告對接到相應的人
  • 問題截圖
  • 生成報表
  • 發釘釘
  • 錄屏
相關文章
相關標籤/搜索