python 简介及环境配置
1.python 是一种解释型语言,在开发过程中没有编译这个环节,这是与Java的区别。而C语言是编译型语言,没有解释这个环节。
2.python和Java都是面向对象语言,C语言是面向过程语言。
3.python环境设置:编辑时显示想要显示的文字
4.设置python快捷键:
print输出
print("helloworld")
print('helloworld')
print(3+1)
fp=open('C:/Users/Administrator.SC-202010191845/PycharmProjects/text.txt', 'a+')
print('helloworld',file=fp)
fp.close()
转义字符
print('hello\nworld')
print('hello\tworld')
print('helloooo\tworld')
print('hello\rworld')
print('hello\bworld')
print('http:\\\\www.baidu.com')
print('老师说:\'大家好\'')
print(r'hello\nworld')
print(r'hello\nworld\\')
运行结果:
hello
world
hello world
helloooo world
world
hellworld
http:\\www.baidu.com
老师说:'大家好'
hello\nworld
hello\nworld\\
标识符
输出python中的关键字:
import keyword
print(keyword.kwlist)
运行结果:['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
标识符规则:
1.以字母,数字,下划线组成
2.不能以数字开头。
3.不能为关键字
4.大小写严格区分
|