代码搜索:multi-line
找到约 226 项符合「multi-line」的源代码
代码结果 226
www.eeworm.com/read/428326/8875997
py var.py
#Filename: var.py
i = 5
print i
i = i+1
print i
s = '''This is a multi-line string.
This is the second line.'''
print s
www.eeworm.com/read/442749/7645693
py var.py
# Filename : var.py
i=5
print i
i=i+1
print i
s='''This is a multi-line string.
This is the second line.'''
print s
www.eeworm.com/read/435264/7794829
py var.py
# Filename : var.py
i=5
print i
i=i+1
print i
s='''This is a multi-line string.
This is the second line.'''
print s
www.eeworm.com/read/319707/13445770
py var.py
# Filename : var.py
i = 5
print i
i = i + 1
print i
s = '''This is a multi-line string.
This is the second line.' '''
print s
c=5
a=b=c
print a
www.eeworm.com/read/121089/6069714
hdr cedit.hdr
/*
CW : Character Windows
cedit.h
Multi-line edit structures
www.eeworm.com/read/113536/6127948
hdr cedit.hdr
/*
CW : Character Windows
cedit.h
Multi-line edit structures
www.eeworm.com/read/103192/6220686
hdr cedit.hdr
/*
CW : Character Windows
cedit.h
Multi-line edit structures
www.eeworm.com/read/101015/6262130
hdr cedit.hdr
/*
CW : Character Windows
cedit.h
Multi-line edit structures
www.eeworm.com/read/100285/6272046
sql comments.sql
--
-- Comments
--
SELECT 'trailing' AS first; -- trailing single line
SELECT /* embedded single line */ 'embedded' AS second;
SELECT /* both embedded and trailing single line */ 'both' AS third; -- t
www.eeworm.com/read/229886/14313644
py var.py
# Filename : var.py
i = 5
print i
i = i + 1
print i
s = '''This is a multi-line string.
This is the second line.'''
print s