7.4 .1月球體重,基礎函式
編寫乙個函式,把初始體重和每年增加的體重作為引數
# -*- coding: utf-8 -*-
"""2018-2-1@author: linda"""
def weight_moon(weight,x):
for x1 in xrange(1,16):
weight =weight+x
y= weight
monweight = y*0.165
print('第%s年過去的體重是%f,月球的體重是%f' %(x1,y,monweight))
weight_moon(30,0.25)
用for寫出來簡單些
***************==== restart: c:/python27/lianxi/201802.py ***************====
第1年過去的體重是30.250000,月球的體重是4.991250
第2年過去的體重是30.500000,月球的體重是5.032500
第3年過去的體重是30.750000,月球的體重是5.073750
第4年過去的體重是31.000000,月球的體重是5.115000
第5年過去的體重是31.250000,月球的體重是5.156250
第6年過去的體重是31.500000,月球的體重是5.197500
第7年過去的體重是31.750000,月球的體重是5.238750
第8年過去的體重是32.000000,月球的體重是5.280000
第9年過去的體重是32.250000,月球的體重是5.321250
第10年過去的體重是32.500000,月球的體重是5.362500
第11年過去的體重是32.750000,月球的體重是5.403750
第12年過去的體重是33.000000,月球的體重是5.445000
第13年過去的體重是33.250000,月球的體重是5.486250
第14年過去的體重是33.500000,月球的體重是5.527500
第15年過去的體重是33.750000,月球的體重是5.568750
7.4.2月球體重,外加年數。
# -*- coding: utf-8 -*-
"""2018-2-1@author: linda"""
def weight_moon(weight,x,year):
for x1 in xrange(1,year):
weight =weight+x
y= weight
monweight = y*0.165
print('第%s年過去的體重是%f,月球的體重是%f' %(x1,y,monweight))
weight_moon(30,0.25,6)
7.4.3月球體重程式
# -*- coding: utf-8 -*-
"""2018-2-1@author: linda"""
def weight_moon(weight,x,year):
for x1 in xrange(1,year):
weight =weight+x
y= weight
monweight = y*0.165
print('第%s年過去的體重是%f,月球的體重是%f' %(x1,y,monweight))
import sys
print('please input your weight')
weight =float( sys.stdin.readline())
print('please input your weightadd')
weightadd =float( sys.stdin.readline())
print('please input year')
year =int( sys.stdin.readline())
weight_moon(weight,weightadd,year)
***************==== restart: c:/python27/lianxi/201802.py ***************====
please input your weight
20please input your weightadd
1please input year
5第1年過去的體重是21.000000,月球的體重是3.465000
第2年過去的體重是22.000000,月球的體重是3.630000
第3年過去的體重是23.000000,月球的體重是3.795000
第4年過去的體重是24.000000,月球的體重是3.960000
>>>
成功,但是在安排順序時,應先定義函式,否則輸入乙個weight就出結果,錯誤
趣學python第7章函式
趣學python第7章函式 函式的組成部分三個,函式名,引數,函式體 def testfunc name print hello,s name testfunc wang 列印出hello,wang restart c python27 lianxi 2018123.py hello,wang de...
趣學python第7章使用模組
趣學python第7章使用模組 1.time模組 import time 引入時間模組 print time.time restart c python27 lianxi 2018123.py 1517052225.95 列印出一串數字 更改列印函式,print time.asctime sat j...
第3章練習題
1 在這一章中,所謂的過濾是什麼意思?有什麼意義?過濾是指下層驅動程式和上層軟體之間的過濾層,在上下層進行資料交換時進行掃瞄過濾的過程 2 何為核心物件?我們已經接觸到了哪幾種核心物件?核心物件是核心中的一塊記憶體,是一種資料結構,負責維護該物件的資訊。裝置物件,驅動物件,進執行緒物件 3 何為裝置...