與孩子一起學程式設計05章

2021-06-18 00:47:02 字數 2023 閱讀 2182

python內建了乙個輸入函式 raw_input(),

# 與孩子一起學程式設計05章

# 2023年8月21日16:03:04

# 學習raw_input()輸入函式

print "enter your name: "

name = raw_input()

print "hi", name, "how are you today."

如果在print語句後加上乙個「,」會怎樣,試試看

print "enter your name: "

name = raw_input()

print "hi", name, "how are you today."

print "enter your name: ",

name = raw_input()

print "hi", name, "how are you today."

在python中編譯執行後,是這樣

enter your name: 

watt

hi watt how are you today.

enter your name: watt

hi watt how are you today.

>>>

注意,逗號是在結束引號的後面。逗號可以把多個print語句合併到同一行上。

print "my",

print "name",

print "is",

print "watt."

編譯後輸出

>>> 

my name is watt.

>>>

每個詞後都會增加乙個空格

還可以這樣寫

>>> name = raw_input("enter your name is: ")

enter your name is: watt

>>>

>>> fahr = float(raw_input())

88>>>

使用raw_input()函式來做溫度轉換

print "this program converts fahrenheit to celsius"

print "type in a temperature in fahrenheit: ",

fahrenheit = float(raw_input())

celsius = (fahrenheit - 32) * 5.0 / 9

print "that is",

print celsius,

print "degrees celsius"

編譯後

>>> 

this program converts fahrenheit to celsius

type in a temperature in fahrenheit: 78

that is 25.5555555556 degrees celsius

>>>

結合int()使用raw_input()

respones = raw_input("how many students are in your class: ")

numberofstudents = int(respones)

還可以開啟乙個網際網路的檔案

import urllib

file = urllib.urlopen('')

message = file.read()

print message

越來越有意思了,嗯最近學的時間不是很有規律,呵呵

以後盡量多擠一點時間學學。

與孩子一起學程式設計05章

動手試一試 1.2.兩個變數的程式設計 coding utf 8 輸入,你姓什麼?記住要有字串,這是很好的 first raw input enter you first name last raw input enter you last name print hello,first,last,h...

與孩子一起學程式設計03章

基本數 算 四大基本運算,我就不用說了吧,加 減 乘 除 等號 也是乙個操作符,為賦值操作符。運算順序也是根據標準的運算法則,這些,大家都是了解的。另外,還有兩個操作符 指數 自乘為乙個冪 print 3 3 3 3 3 243 print 3 5 243 python用乙個雙星號 表示指數或者將乙...

與孩子一起學程式設計08章

迴圈 looping 計數迴圈 counting loop 條件迴圈 conditional loop 1 計數迴圈,for迴圈 for looper in 1,2,3,4,5 print hello 每一次迴圈稱為一次迭代 iteration 再來試試看 for looper in 1,2,3,4...