标签:print error 对齐 基本 bsp world 代码 int cep
# -*- coding: utf-8 -*-
#或者写成下面这种形式
# coding: utf-8
#注意空格的对齐
try: x = 100 y = 200 except IndentationError: print(‘IndentationError: unexpected indent‘) # 单行注释 ‘‘‘ 多行注释 多行注释 ‘‘‘ # 多行代码 str = ‘abcd‘ ‘efgh‘ print(str) # 多行字符串 str = ‘Hello\nworld‘ print(str) str = """Hello world""" print(str)
标签:print error 对齐 基本 bsp world 代码 int cep
原文地址:http://www.cnblogs.com/xiaoyingying/p/7689835.html