Board logo

標題: 格式化輸出 (二) [打印本頁]

作者: 鄭繼威    時間: 2023-7-7 19:31     標題: 格式化輸出 (二)

本帖最後由 鄭繼威 於 2023-7-10 11:39 編輯

語法
print(字串.format(參數列))
print(f"{參數}")

[名字]的成績為[分數]分
本帖隱藏的內容需要積分高於 1 才可瀏覽

作者: 董炫霆    時間: 2023-7-10 11:42

  1. name="Tim";
  2. score=95;
  3. print("{}的成績為{}".format(name,score)
複製代碼

作者: 曾冠瑋    時間: 2023-7-10 11:51

name="ellis"
score=99
print("{}的成績為{}".format(name,score))
作者: 張育維    時間: 2023-7-10 11:52

名字 = "張育維"
分數 = 999
print("{}的成績是{}".formate(名字,分數)
作者: 歐陽霖    時間: 2023-7-10 11:55

  1. name="Tony"
  2. score=100
  3. print("{}的成績是{}分".format(name,score))
複製代碼

作者: 鄭繼威    時間: 2023-7-10 11:56

4
作者: 方昱安    時間: 2023-7-10 12:38

  1. score=98
  2. name="方昱安"
  3. pi=3.14159
  4. print("pi=%010.9f"%pi)
  5. print(name+"考了"+"score=%03d"%score)
  6. print("{}的成績是{}".format(name,score))
複製代碼

作者: 方昱安    時間: 2023-7-10 13:06

  1. score=98
  2. name="方昱安"
  3. print("{}的成績是{}".format(name,score))
複製代碼

作者: 矯博宇    時間: 2023-8-2 11:57

  1. name="poyu"
  2. score="A"
  3. print("{} get {} on his math and physics".format(name,score))
  4. print(f"{name} get {score} on his math and physics")
複製代碼

作者: 盧承新    時間: 2023-8-2 11:57

  1. name="盧承新"
  2. score=99
  3. print(f"{name}的成績為{score}分")
複製代碼

作者: 呂宗晉    時間: 2023-8-2 11:58

  1. name="alvin"
  2. score=99
  3. print("{}的成績為{}".format(name,score))
複製代碼

作者: 盧芷萱    時間: 2023-8-2 11:59

本帖最後由 盧芷萱 於 2023-8-2 12:04 編輯
  1. name="Bourbon"
  2. score=100
  3. print(f"{name}的成績為{score}分")
複製代碼

作者: 高士涵    時間: 2023-8-2 11:59

  1. name='Frederic'
  2. score=92
  3. print(f"{name}的成績是{score}分")
複製代碼

作者: 鄭繼威    時間: 2023-8-2 12:03

5
作者: 鄧維成    時間: 2023-8-2 12:03

  1. name="瞪維成"
  2. score=96
  3. print("{}的成績為{}".format(name,score))
複製代碼

作者: 張子搴    時間: 2023-8-2 12:31

  1. name="子搴"
  2. score=100
  3. print(f"{name}的成績為{score}分")
複製代碼

作者: 李逢翔    時間: 2023-8-2 13:15

  1. # -*- coding: utf-8 -*-
  2. """
  3. Spyder Editor

  4. This is a temporary script file.
  5. """
  6. name="shawn"
  7. score=99
  8. print(f"{name}的成績為{score}分")
複製代碼

作者: 張絜晰    時間: 2023-8-2 13:16

  1. name="Snowy"
  2. score=100
  3. print("{} has a score of {}".format(name,score))
  4. print(name,"has a score of",score)
  5. print(f"{name} has a score of {score}")
複製代碼

作者: 陳珺    時間: 2023-8-2 13:18

name="陳珺"
scord="88"
print(f"{name}+的成績為+{scord}+分")




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2