Python第一课—print函数
Posted on 2020-11-11
语法 print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) 参数 * obje
语法 print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) 参数 * obje
Python代码 f=float(input("请输入一个华氏温度:")) c= 5 *(f-32)/9 print("摄氏温度:",c) C语言代码 #