返回列表 發帖

格式化輸出 (二)

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

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

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

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

TOP

name="ellis"
score=99
print("{}的成績為{}".format(name,score))

TOP

名字 = "張育維"
分數 = 999
print("{}的成績是{}".formate(名字,分數)

TOP

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

TOP

4

TOP

  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))
複製代碼

TOP

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

TOP

  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")
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

5

TOP

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

TOP

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

TOP

  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}分")
複製代碼

TOP

  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}")
複製代碼
Attention Seeker </3

TOP

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

TOP

返回列表