Python(二)語法:輸入input()輸出print()
阿新 • • 發佈:2018-11-13
1.使用文字編輯器
在指定資料夾下新建helloword的文字,然後編寫如下內容,另存為.py結尾
print("Hello word!")
在當前檔案所在路徑下,進入命令列視窗 輸入python helloword.py 回車執行效果如下
2.使用互動模式編寫
命令列串列埠下輸入python
直接輸入你要編寫的語句 回車執行
輸出 print()
當輸入字元創要拼接時直接多個字串用逗號分開,執行時逗號會自動變成空格
對於數字型別,會直接相加
輸入 input()
Python提供了一個input()
,可以讓使用者輸入字串,並存放到一個變數裡
如果要提示使用者輸入什麼
name=input("please enter your name:")
print(name)
上面的例子如果編寫的時候是中文可能編碼會報錯
name=input("請輸入你的名字:")
print(name)
SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xc7 in position 0:
invalid continuation byte
只需要在上面加註釋指定對應的編碼集即可
# -*- coding: gbk -*- name=input("請輸入你的名字:") print(name)