Python基礎知識

2022-09-12 01:54:08 字數 1601 閱讀 1195

1.python是一種解釋性語言 不需要編譯,直接就可以執行。

python的語法:

輸入hello world  :print('hello world') 這樣就會在控制台列印出hello world ,print就是輸入的作用

2.python中怎麼定義變數:(變數的作用:就是存東西,aa=bb,就是把bb存到aa中,這樣就定義了乙個變數)

python的資料型別:int型別、字串型別(字串型別要用引號括起來)

name=「liuaixia」  print(『name』),這樣列印出的就是liuaixia

age=10

money=19.8

python中引號的使用介紹:單引號和雙引號的作用是一樣的

today = '2023年3月23日'  #一般情況下單引號和雙引號是一樣的

words="let't go" #如果裡面有單引號,外面就需要用雙引號

words='小明長得真"好看"' #如果裡面有雙引號,外面就需要用單引號

words=''' let's go ,you are so "beautiful" ''' #如果裡面既有單引號,也有雙引號,則使用''''''

#如果裡面既有單引號,也有雙引號,則使用''''''

3、python的注釋:『』『』『』

4、python的列印輸出:

name=input("請輸出你的名字")

print(name)

5、if else 的使用(if和else後面一定加:)

score=input('請輸入你的成績')

score=int(score)

if score>=90:

print('優秀')

elif score<90 and score>=80:

print('良好')

elif score<80 and score>=60:

print('及格')

else:

print('不及格')

6、while迴圈(while後面一定加:)

import random

number=random.randint(1,10) #隨機產生的數字

print(number)

count=0

#最多才7次,猜對了就結束遊戲,猜錯了次數少一次,提示猜錯

while count<7:

count+=1

guess=int(input('請輸入你才的數字'))

if guess>number:

print('大了')

8、python中格式化的講解:

Python 基礎知識

來自 一 識別符號 1.python 中的識別符號是區分大小寫的。2.標示符以字母或下劃線開頭,可包括字母,下劃線和數字。3.以下劃線開頭的識別符號是有特殊意義的。以單下劃線開頭 foo 的代表不能直接訪問的類屬性,需通過類提供的介面進行訪問,不能用 from import 而匯入 以雙下劃線開頭的...

python基礎知識

一.隨機數的生成 都需要 import random 1.用於生成乙個指定範圍內的隨機浮點數。print random.uniform 10,20 print random.uniform 20,10 2.生成乙個指定範圍內的整數。下限必須小於上限制 print random.randint 12,...

python基礎知識

py基礎學習 1.命令列輸入python命令式,例如python test.py c m install sys.argv test.py c m install 2.切片,str 0 5 1 含頭不含尾,表示倒序切 3.unicode和encode unicode str,utf 8 將utf 8...