趣學python第7章使用模組
1.time模組
import time
#引入時間模組
print time.time()
***************==== restart: c:\python27\lianxi\2018123.py ***************====
1517052225.95
列印出一串數字
更改列印函式,
print (time.asctime())
sat jan 27 19:25:15 2018
只有列印asctime(),才顯示正確的時間。這個函式的作用是作為乙個字串返回當前的日期和時間。
2.sys模組,用來輸入乙個值
sys中有乙個特別的物件stdin標準輸入,其中乙個函式叫readline,可以用來讀取來自鍵盤的一行文字輸入,直到按下回車鍵為止。
import sys
print(sys.stdin.readline())
這段**輸入數字沒問題,到了字串就報錯
print(sys.stdin.readline())
>>> 456
456print(sys.stdin.readline())
>>> s
traceback (most recent call last):
file "", line 1, in
snameerror: name 's' is not defined
>>>
現在加入if來判斷
import sys
print('please input your age')
age =int( sys.stdin.readline())
if age >= 12 and age <= 19:
print (age )
else :
print('it is not possible as a student'
這個年齡段是個中學生,
如果把這個判斷放入到乙個函式中
def age_define(age):
if age >= 12 and age <= 19:
print (age )
else :
print('it is not possible as a student')
age_define(9)
成立
趣學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章練習題
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 mon...
趣學PYTHON第3章 字串
字串的使用,可以是英文單引號,雙引號,都可以輸出 1.但是當字串超過了一行,就要使用三個單引號了。否則會報錯。三個單引號可以解決這個問題,eol while scanning string literal 2.引號用來標註字串,但是如果輸出的字串也包含引號,怎麼辦。silly string he s...