與小卡特一起學python 第5章 輸入 5-1,2,3,4 input()輸入函式

yarking207發表於2016-03-30
#5-1 使用input()得到一個字串
#python2 的raw_input()  在python3則是input()

print("Enter your name:")
somebody = input()
print("Hi",somebody,"how are you today?")

#5-2 逗號用來做什麼

print("My",end=" ")
print("name",end=" ")
print("is",end=" ")
print("Dave.",end=" ")

#My name is Dave. 列印在同一行裡。

#5-3 使用input()轉換溫度

print("This program converts Fahrenheit to Celsius")
print("Type in a temperature in Fahrenheit:")
fahrenheit = float(input())
celsius = int((fahrenheit -32)*5.0/9)  #由於結果太多小數,我增加了int()
print("That is ",end=" ")
print(celsius,end=" ")
print("degrees Celsius")

#5-4 來自網際網路上的一個檔案輸入  除錯出錯。
import urllib2
file = urllib2.urlopen('')
message = file.read()
print (message)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2072677/,如需轉載,請註明出處,否則將追究法律責任。

相關文章