输入:
x = input("提示字")
输出:
字符串:print("hello world")
整型:print(100)
变量输出:
x=12 #整型
s="hello" #字符串型
arr=[1,2,"a"] #列表
t=(1,2,"a") #元组
d={"a":1,"b":2} #字典
以上数据类型都可直接用 print(变量名) 直接输出
格式化输出:
s = "hello"
l = len(s)
print("the length of %s is %d" %(s,l))
格式化输出跟c语言差不多,只不过后面的控制输出的格式不太一样,%(变量1,变量2)以这种格式
不换行输出:
默认print()是自动换行的,如果想不让换行,可以写作(针对python3.x):
print(a,end="")
其实可以理解为输出后,结尾以空字符结束,end里的字符串的值即时结束后缀