今天学了python的输入语句,用到了print()方法,感觉python的语法很简单。
实例1
a = input("输入:") print(a) print(type(a))
实例2(强制类型转换)
c = int(input("输入:")) print(c) print(type(c))