Python最常用的基礎語句,你知道幾個?
在學習或者工作中,透過Python進行編碼的時候,經常會用到一些常用的句式,也就是所謂的基礎語句。它們出現的頻繁非常高,也是約定俗成的寫法。那麼Python最常用的基礎語句有哪些?本文為大家簡單介紹幾個,看看你瞭解多少。
1、format字串格式化
format把字串當成一個模板,透過傳入的引數進行格式化,非常實用且強大。
# 格式化字串
print('{}{}'.format('hello','world'))
# 浮點數
float1 = 563.78453
print("{:5.2f}".format(float1))
2、連線字串
使用+連線兩個字串
string1 = 'linux'
string2 = 'hint'
joined_string = string1 +string2
print(joined_string)
3、if...else條件語句
Python條件語句是透過一條或多條語句的執行結果來決定執行的程式碼塊。其中if...else語句用來執行需要判斷的情形。
# Assign a numeric value
number = 70
# Check the is more than 70 or not
if(number >= 70):
print("You have passed")
else:
print("You have note passed")
4、for...in\while迴圈語句
迴圈語句就是遍歷一個序列,迴圈去執行某個操作,Python中的迴圈語句有for和while。
for迴圈
# Initialize the list
weekdays = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]
print("Seven Weekdays are:n")
# Iterate the list using for loop
for day in range(len(weekdays)):
print(weekdays[day])
while迴圈
# Initialize counter
counter = 1
# Inerate the loop 5 times
while counter < 6:
#print the counter value
print("The current counter value:%d" % counter)
# Increment the counter
counter = counter + 1
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952527/viewspace-2998442/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 這幾個python常用的庫你必須知道!Python
- Python基礎-if,for語句Python
- Python語言最常見的8個基礎語句!Python
- python基礎語法—語句Python
- Python常用的圖形介面程式設計框架,你知道幾個?Python程式設計框架
- 【Python基礎】for迴圈語句Python
- python的五個特點,你知道幾個?Python
- 【Python基礎知識】Python中的while語句PythonWhile
- Python基礎-While迴圈語句PythonWhile
- python基礎語句小練習Python
- Python程式設計師常用的五大工具,你知道幾個?Python程式設計師
- 8個Python爬蟲框架,你知道幾個?Python爬蟲框架
- 女生最容易就業的5個專業,你知道幾個?就業
- 最常用的分散式ID解決方案,你知道幾個分散式
- 你應該知道Go語言的幾個優勢Go
- python基礎之如何用if語句判斷多個條件?Python
- 十個python熱門專案,你知道幾個Python
- Spring中11個最常用的擴充套件點,你知道幾個?Spring套件
- Python中常用的模組有哪些?看看你知道幾個!Python
- MySQL基礎語句MySql
- 你知道你自己最經常使用的是哪幾個Linux命令呢?Linux
- Python基礎語法:開始你的Python之旅Python
- 『無為則無心』Python基礎 — 15、Python流程控制語句(for迴圈語句)Python
- 『無為則無心』Python基礎 — 13、Python流程控制語句(條件語句)Python
- Python零基礎學習筆記(十八)——break語句和continue語句Python筆記
- 關於理財你最應該知道幾個問題
- java基礎-衛語句Java
- Web滲透測試常用工具,你知道幾個?Web
- 這幾個好用的Python開源框架,你都知道嗎?Python框架
- Python常用的開源框架,這三個你必須知道!Python框架
- SQL語言基礎(SELECT語句)SQL
- mysql基礎複習(SQL語句的四個分類),MySql
- 100個你應該知道的java基礎知識Java
- Python基礎入門知識點——if 語句簡介Python
- 學習python最離不開的庫,你都知道哪個?Python
- python 的幾個常用的函式Python函式
- mysql的常用語句MySql
- JAVA基礎--Switch case語句Java