name=input(「請輸入姓名:」)
#輸入科目1值
km=input(「請輸入科目1:」)
#輸入成績1值
cj=float(input(「請輸入成績1:」))
#輸入科目2值
km2=input(「請輸入科目2:」)
#輸入成績2值
cj2=float(input(「請輸入成績2:」))
#輸入科目3值
km3=input(「請輸入科目3:」)
#輸入成績3值
cj3=float(input(「請輸入成績3:」))
#列印成績表
print(「成績表」.center(17,"-"))
#列印表頭
print(「姓名」,「科目」,「成績」,sep="\t")
#分別使用%,format,sep方法列印三科科目和成績
print(name,km,cj,sep="\t")
print("%-8s%-8s%-5.1f"%(name,km2,cj2))
print("".format(name,km3,cj3))
#列印總分平均分
print(「總分:」,cj+cj2+cj3)
print(「平均分:」,(cj+cj2+cj3)/3)
Python 使用input()實現多輸入
用map split 以及input 可以實現用input 同時輸入多個數。1.map map 函式接收兩個引數,乙個是函式,乙個是序列,map將傳入的函式依次作用到序列的每個元素,並把結果作為新的list返回。2.split 拆分字串。通過指定分隔符對字串進行切片,並返回分割後的字串列表 list...
Python中input 的使用方法
input 以字串的方式獲取使用者輸入 1 x input 2 4.5 3 type x 4 str 5 y input 6do you love python?7 type y 8 str 輸入的字串可以通過運算子進行連線 複製等操作 1 x input 2abc 3 x 34 abcabcabc...
python寫乙個服務 Python寫乙個服務
coding utf 8 import json from urllib.parse import parse qs from wsgiref.server import make server 定義函式,引數是函式的兩個引數,都是python本身定義的,預設就行了。定義檔案請求的型別和當前請求成功...