Python學習 任務1 基本使用

2021-10-02 12:32:42 字數 1414 閱讀 3545

python環境和ide搭建小結:

2、有「c盤維護症」的可以自己在其他盤新建乙個資料夾作為環境路徑,安裝過程記得選擇安裝路徑

3、安裝介面下方有個add python 3.x to path的選項記得點,可以自動配置到環境變數,省得自己去弄

4、提示完成後,ctrl+r再cmd進入控制台,輸入python如果有反應則說明python環境搭建好

5、ide可以用pycharm,pycharm去官網下,推薦社群版,專業版貌似有30天限制,長期玩家推薦社群版

6、pycharm怎麼調怎麼玩可以自己baidu,不難,引用包什麼的很簡單

tutorial_1:實現基本的一些使用

# - tutorial 1

# - 2020-2-3

# - johan

# - 題目:

# 1、hello world!程式

# 2、平方根

# 3、指數函式

# 4、圓的周長

'''包含的語法:

1、變數賦值

2、輸入和輸出

3、型別轉換

4、迴圈語句和條件表示式

5、math函式使用

6、字串format

'''import math

# [hello world!] episode

str = "hello world!"

print(str)

# [sqrt] episode

strnumber = input("請輸入乙個10-100的整數:")

number = int(strnumber)

while number < 10 or number > 100:

strnmber = input("輸入有誤!請輸入乙個10-100的整數:")

number = int(strnumber)

sqrtnum = math.sqrt(number)

print("sqrt()=".format(number, sqrtnum))

# [power] episode

powernum = math.pow(number, 2)

print("^2=".format(number, powernum))

# [circumference] episode

cirnum = 2 * math.pi * number

print("radius=, circumference=".format(number, cirnum))

執行結果:

(作為乙個長期與c語言打交道的工程師,對python的感覺就是:這玩意兒真的很拿來主義)

小組python學習任務1

步驟1 安裝軟體 1 anaconda 2 vscode 3 vscode安裝的外掛程式 4 anaconda的使用 下面的命令需要在anaconda中的命令列中輸入 環境建立 conda create name yourenv python 2.7 name 也可以縮寫為 n yourenv 是新...

python學習筆記 1 變數的基本使用

price 8 定義蘋果單價 weight 7 定義蘋果重量 money price weight 定義付款金額 print money money money 5 此步驟並未定義新的變數 print money 變數只有第一次出現才是定義變數,再次出現則是使用變數,變數中儲存的值是可以變得。out...

python基礎任務1

環境搭建 a anaconda環境配置 b 直譯器 在編寫 時會得到乙個.py結尾的檔案,要想執行執行此檔案就需要python直譯器。python有多種版本的直譯器 cpython 官方版本的直譯器。這個直譯器是用c語言開發的,所以叫cpython,是使用最廣的python直譯器。ipython 基...