我们选择在Ubuntu下进行Python编程:建立起一个.py文件,里面开始敲Python代码,然后在shell中利用命令 $python 文件名 显示运行结果。
这里介绍几个与字符串有关的函数和语法:
1. input
name = input ("What's your name? ") print "Hello, " + name + "!"
2. raw_input
age = raw_input ("How old are you?")
3. 转义符‘\‘
print "Hello, world!"
1 + 2 + 4 + 5
4. repr
这个函数保留输入的原始形式,来看个例子就明白了
如果只用print,它会取代字符串的引号和长整型的L,repr会保留这些特征。
原文地址:http://blog.csdn.net/bluecloudmatrix/article/details/38777539