python学习第一天 基础知识

输出函数print

#可以输出数字
print(456)
#可以输出字符串
print("字符串",'print("字符串")')
#可以输出表达式
print(3+5)
#可以输出到文件中
fp=open('/Users/xiaoqi/Desktop/hello/ceshi.text','a+')#打开文件, a+ 表示追加文件,没有文件进行创建
print('文件追加',file=fp)
fp.close()

转义字符的使用

print('hello\nword')
print('hello\tword')
print('helloooo\tword')#\t表示制表位  四个字符 不足四个自动补齐,满了四个重新开一个
print('hello\rword')#回车
print('hello\bword')#退格
#原字符,不希望字符串中的转义字符起作用,就是用原字符,就是在字符串之前加上r或者R,注意原字符的最后一个字母不能是‘\’
print(r"hello\nword")
print(chr(0b1001110010110011))#打印unicode值对应的符号。0b 二进制 0o八进制 0x 十六进制
print(ord('鲳'))#打印对应的unicode值

打印结果如下

hello
word
hello   word
helloooo    word
word
hellword
hello\nword
鲳
40115

变量三部分
标识 表示对象存储的地址,使用内置函数id(obj)来获取
类 型表示对象的数据类型,使用内置函数type(obj)来获取
值 表示对象所存储的具体数据,使用内置函数print(obj)来打印输出

你可能感兴趣的:(python学习第一天 基础知识)