看教程上面说,多行注释用三个单引号 ''' 或者三个双引号 """ 将注释括起来。
但是看有些代码在''' '''内是生效的。如;
sql = '''create table students (
name text,
username text,
id int)'''
cursor.execute(sql)
为什么呢。
看教程上面说,多行注释用三个单引号 ''' 或者三个双引号 """ 将注释括起来。
但是看有些代码在''' '''内是生效的。如;
sql = '''create table students (
name text,
username text,
id int)'''
cursor.execute(sql)
为什么呢。
你这个是定义变量赋值,这里符号的含意是'''...'''的格式表示多行内容;
'''
python多行注释
python多行注释
'''