Python 官方文档:入门教程 => 点击学习
一、单引号 '',、双引号""、三引号""" """的区别 1、单引号与双引号都用于字符串的引用,其中使用双引号时如果需要换行就需要使用连行符 “\” ,但是在使用三引号(多引号)时,无需使用连行符,此外在三引号中可以使用注释(#
一、单引号 '',、双引号""、三引号""" """的区别
1、单引号与双引号都用于字符串的引用,其中使用双引号时如果需要换行就需要使用连行符 “\” ,但是在使用三引号(多引号)时,无需使用连行符,此外在三引号中可以使用注释(#)。
print "Hello, World !"
print "Hello ,\
World !"
print """ Hello, World !"""
print """ Hello, #first python script
World !"""
2、单引号和双引号在字符串引用时是没有区别的,避免出现在使用双引号时字符串中包含双引号时使用转义符号,直接使用单引号更为简洁美观。单引号亦是如此。
print "I'am here !"
print 'I\'am here !'
print 'You said "YES" .'
print "You said \"YES\"."
二、raw_input()与input()的区别
1、当输入为纯数字时
input返回的是数值类型,如int,float
raw_inpout返回的是字符串类型,string类型
2、输入字符串为表达式
input会计算在字符串中的数字表达式,而raw_input不会。
如输入 “5 + 3”:
input会得到整数8
raw_input会得到字符串”5 + 3”
其实:
def input(prompt):
return (eval(raw_input(prompt)))
三、
1、接受输入不还行需要加逗号(,)
print"Do you know Python ?",
anw = raw_input()
print "YES,you Got it ?"
anw1=raw_input()
2、%r替换原字符内容,不做解释
a = "abc"
print "Frist var test a is %r" % a
print "Frist var test a is %s" % a
--结束END--
本文标题: Python之打印
本文链接: https://lsjlt.com/news/184856.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0