python3.x 与python2.x print的区别 input区别

#python3.x 与python2.x print的区别  input区别
#python3.x
# print(x,y)   #打印对象
# #python2.x
# print x,y

# #python3.x
# print(x,y,end="")
# #python2.x
# print x,y,

#echo "aa" >> 1.txt
#python3.x   把内容追加到文件
with open("1.py","a",encoding="utf-8") as f:
    print("11",file=f)

#python2.x
# with open("1.py","a",encoding="utf-8") as f:
#     print >> f,"hhh"
#
    
#print  其实是调用了sys.stdout.write

# In [9]: print("1")
# 1
#
# In [10]: sys.stdout.write("1"+"\n")
# 1
#
#这两行代码等价


#python3.x  sep  #多个字符串用什么链接
print("12","3")
print("12","3",sep="+")


#input()区别
#python2.x
    #input()    自动识别输入的参数,并转换
    #raw_input()  #默认都是字符串类型
    
#python3.x
#raw_input()与input() 整合
input()  #全部按字符串处理

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值