# -*- coding: UTF-8 -*- # Author : LinYaoHong # Date : 2019/8/2 13:27 # Filename: 01-04交互输入.py # Tools : PyCharm name = input("name:") age = input("age:") tel = int(input("tel:")) print(name, type(name), age, type(age), tel, type(tel))