Python最常用的基礎語句,你知道幾個?

老男孩IT教育機構發表於2023-12-01

  在學習或者工作中,透過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/,如需轉載,請註明出處,否則將追究法律責任。

相關文章