请教 一个简单的问题
prompt = {'row: the sum of piont in row', ...'col: the sum of piont in column',...
'p: the period of grating',...
'shift: the sum of shift'}
的运行结果是
prompt =
是什么意思?
为什么最后一行改成
's: the sum of shift'}
结果就变成了
prompt =
Columns 1 through 3
's: the sum of shift' 你这只是一个简单的赋值语句。
prompt =
的意思就是向量prompt的第一个值是大小为1x28的字符串,由于比较大,故没有直接显示内容,而只是显示了其大小,'row: the sum of piont in row'一共28个字符。后面的以此类推
而's: the sum of shift' 的长度较小,可以直接显示 啊!原来如此啊!
多谢多谢!
页:
[1]