python的基本語法以及小練習

2021-09-29 10:54:39 字數 1592 閱讀 4384

這算是零基礎的語法

基本的輸出以及變數的型別判斷
print

("helloworld"

)a =

1print

(a)# 輸出變數的資料型別

print

(type

(a))

a ="張三"

print

(type

(a))

b ='李四'

print

(type

(b))

print

(type

('''王五'''))

'''多行注釋

'''num =

12# 是乙個整數的佔位符

print

("num的值是%d"

%num)

name =

"張三"

print

("名字為"

%name)

name =

'a'print

(type

(name)

)flag =

true

print

(type

(flag)

)num =

3.14

print

(type

(num)

)# 使用者互動程式 在控制台內輸入

name =

input

("請輸入你的使用者名稱: "

)age =

input

("請輸入你的年齡: "

)print

(type

(age)

)# 強制轉換成int型別

age =

int(age)

print

(type

(age)

)age =

str(age)

print

(type

(age)

)

for迴圈畫直角三角形
# -*- coding: utf-8 -*-

for i in

range(1

,6):

# range(0,10) [0,10)

for j in

range(4

):print

("ceshi"

)# 用for迴圈巢狀實現九九乘法口訣表

# 畫空心直角三角形

for i in

range(0

,5):

for j in

range

(i+1):

if i ==4:

print

("* "

, end="")

continue

if j ==

0or j == i:

print

("* "

, end="")

else

:print

(" "

, end="")

print

()

Python的基本語法

命名 表示不能直接訪問的類屬性,需要通過類提供的介面訪問,不能用from import 匯入 表示私有成員 表示特殊方法,例如 init 類建構函式 縮排python沒有 用縮排控制 塊 行縮排空白是可變的,但是必須嚴格保持一致 正確寫法 if true print true else print ...

Python的基本語法

對於一門程式語言來說,如果想要完全掌握它,那你就必須先把他的精髓讀懂,也就是說你需要先把它的基本語法搞懂。然後再根據這些基本的語法和演算法一步一步的深入,最後用真實案例來檢驗自己,看是否真正學會了這門新的程式語言。今天我就先來給大家分享一些我學習python時初步接觸到的一些基本語法。第一 pyth...

python的基本語法

if語句,當條件成立時執行語句塊。經常與else,elif 相當於else if 配合使用。a int input enter your number if a 4 print 正確 else print 錯誤 for語句,遍歷列表 字串 字典 集合等迭代器,依次處理迭代器中的每個元素。在這裡我們拿...