Exercise10、11
ex10.py
1、Escape Sequences : 转义字符
2、\n : 换行
3、\t : tab
4、\\ : print \
5、\"(') : print " or '
ex11.py
1、end=' ' : Tells print to not end the line with a new line.
2、input( ) : get keyboard characters .
ex12.py
ex10.py
1、Escape Sequences : 转义字符
2、\n : 换行
3、\t : tab
4、\\ : print \
5、\"(') : print " or '
ex11.py
1、end=' ' : Tells print to not end the line with a new line.
2、input( ) : get keyboard characters .
ex12.py