python基本语法1.3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基本语法1.3相关的知识,希望对你有一定的参考价值。
# -*- 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)
以上是关于python基本语法1.3的主要内容,如果未能解决你的问题,请参考以下文章