- Python Programming with Raspberry Pi
- Sai Yamanoor Srihari Yamanoor
- 125字
- 2021-07-02 23:48:44
An exercise for the reader
Make use of the format() method to format a string with more than one variable.
Let's build a console/command-line application that takes inputs from the user and print it on the screen. Let's create a new file named input_test.py, (available along with this chapter's downloads) take some user inputs and print them on the screen:
name = input("What is your name? ")
address = input("What is your address? ")
age = input("How old are you? ")
print("My name is " + name)
print("I am " + age + " years old")
print("My address is " + address)
Execute the program and see what happens:

The input_test.py output
The preceding example is available for download along with this chapter as input_test.py.
推薦閱讀
- Mastering Proxmox(Third Edition)
- 精通MATLAB神經網絡
- Java實用組件集
- 樂高機器人EV3設計指南:創造者的搭建邏輯
- R Machine Learning By Example
- 程序設計語言與編譯
- Windows程序設計與架構
- Multimedia Programming with Pure Data
- JSF2和RichFaces4使用指南
- 3D Printing for Architects with MakerBot
- 新手學電腦快速入門
- Implementing Splunk 7(Third Edition)
- The Python Workshop
- 水下無線傳感器網絡的通信與決策技術
- PostgreSQL 10 Administration Cookbook