標題:
格式化輸出 (二)
[打印本頁]
作者:
鄭繼威
時間:
2023-7-7 19:31
標題:
格式化輸出 (二)
本帖最後由 鄭繼威 於 2023-7-10 11:39 編輯
語法
print(字串.format(參數列))
print(f"{參數}")
[名字]的成績為[分數]分
本帖隱藏的內容需要積分高於 1 才可瀏覽
作者:
董炫霆
時間:
2023-7-10 11:42
name="Tim";
score=95;
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
name="Tony"
score=100
print("{}的成績是{}分".format(name,score))
複製代碼
作者:
鄭繼威
時間:
2023-7-10 11:56
4
作者:
方昱安
時間:
2023-7-10 12:38
score=98
name="方昱安"
pi=3.14159
print("pi=%010.9f"%pi)
print(name+"考了"+"score=%03d"%score)
print("{}的成績是{}".format(name,score))
複製代碼
作者:
方昱安
時間:
2023-7-10 13:06
score=98
name="方昱安"
print("{}的成績是{}".format(name,score))
複製代碼
作者:
矯博宇
時間:
2023-8-2 11:57
name="poyu"
score="A"
print("{} get {} on his math and physics".format(name,score))
print(f"{name} get {score} on his math and physics")
複製代碼
作者:
盧承新
時間:
2023-8-2 11:57
name="盧承新"
score=99
print(f"{name}的成績為{score}分")
複製代碼
作者:
呂宗晉
時間:
2023-8-2 11:58
name="alvin"
score=99
print("{}的成績為{}".format(name,score))
複製代碼
作者:
盧芷萱
時間:
2023-8-2 11:59
本帖最後由 盧芷萱 於 2023-8-2 12:04 編輯
name="Bourbon"
score=100
print(f"{name}的成績為{score}分")
複製代碼
作者:
高士涵
時間:
2023-8-2 11:59
name='Frederic'
score=92
print(f"{name}的成績是{score}分")
複製代碼
作者:
鄭繼威
時間:
2023-8-2 12:03
5
作者:
鄧維成
時間:
2023-8-2 12:03
name="瞪維成"
score=96
print("{}的成績為{}".format(name,score))
複製代碼
作者:
張子搴
時間:
2023-8-2 12:31
name="子搴"
score=100
print(f"{name}的成績為{score}分")
複製代碼
作者:
李逢翔
時間:
2023-8-2 13:15
# -*- coding: utf-8 -*-
"""
Spyder Editor
This is a temporary script file.
"""
name="shawn"
score=99
print(f"{name}的成績為{score}分")
複製代碼
作者:
張絜晰
時間:
2023-8-2 13:16
name="Snowy"
score=100
print("{} has a score of {}".format(name,score))
print(name,"has a score of",score)
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