python 第一天之hello world

2021-10-01 08:08:05 字數 1720 閱讀 6595

入門級hello world

print

("hello world"

)

不換行 end=/t

print

("hello world"

,end=

("/t"))

print

("hehehe"

)

文字重複n次*

print

(abc*

10)

進製轉換

print

(123456,8

)print

(int

("123")+

123)

print

(int

("10010101",2

))print

(int

("123123",8

))print

(int

("abcdefghijklmnopqrstuvwxyz",36

))

type型別檢視

print

(type

(int

("123"))

)

str()轉換為字串

print

("123"

+str

(123

))

input輸入函式

a=

int(

input

("輸入乙個數字"))

b=int

(input

("輸入冪"))

print

(a**b)

運算子 + - * ** / // %

加 減 乘 冪 除 整除 取餘

獲取時間

import time

sq=int

(input

("輸入時區"))

ts=(time.time())

#總秒數

cs=ts%

60#當前秒數

tm=ts//

60#總分鐘

cm=tm%

60#當前分鐘

th=tm//

60#總小時

ch=(th%

24+sq)%24

print

("%d:%d:%d"

%(ch,cm,cs)

)

多個輸入eval

a,b,c,d,e,f=

eval

(input

("輸入3個座標,用逗號隔開"))

#邊長距離a=(

(c-a)**2

+(d-b)**2

)**0.5 b=(

(e-a**2+

(f-b)**2

))**0.5c=(

(e-c**2)

+(f-d)**2

)**0.5z=

float

(a+b+c)/2

#周長x=

(z*(z-a)

*(z-b)

*(z-c))**

0.5#面積

print

("%.1f"

%x)

學習python之第一天

一 系統 虛擬機器 vmware workstation 15 pro 15.5.1 build 15018445 linux系統 centos 8.1.1911 x86 64 版本號 4.18.0 147.el8.x86 64 命令 uname r linux命令 pwd 顯示當前路徑 二 由於c...

Python 學習第一天

今天在酷殼網上看了一篇很受啟發的文章 程式設計師技術練級攻略 介紹了乙個程式設計師從啟蒙入門,高階加深,到高階深入,所需要掌握的技術和應該看的書,從今天開始希望乙個星期能把python學會,當然肯定是皮毛了。python3.x之前學習的 學習python的 照著上面的例子敲了一下,發現第乙個就錯了,...

Python學習第一天

大綱 一,python版本的選擇 2.7.x和3.4.x 二,直譯器 編譯器 編輯器的介紹 三,環境變數配置 windows和linux 四,pycharm安裝及屬性配置 windows和linux 五,第乙個程式 hello,moocie!為什麼選擇python?python是一種物件導向 解釋型...