我尝试手动增加一个值(通过一个按钮),并增加到最接近的整数,然后每次点击继续增加一个。
所以,如果变量是
ods tagsets.ExcelXP path="&pathEx." file="file_name.xls" style=seaside
options(autofit_height="yes"
pagebreaks="yes"
orientation="portrait"
papersize="letter"
sheet_interval="none"
sheet_name="Infos"
WIDTH_POINTS = "12" WIDTH_FUDGE = ".0625" absolute_column_width="120,80,200,200"
);
ods escapechar="^";
proc report data=&lib..revenus nowindows missing spanrows style=seaside
style(report)=[frame=box rules=all bordercolor=black borderwidth=0.5
foreground=black Font_face='Times New Roman' font_size=10pt
background=none ]
style(header)=[background=#e0e0e0 foreground=blue just=center]
style(column)=[Font_face='Times New Roman' font_size=10pt
just=left]
;
define an_imposi / display 'Année';
define rev_tot / display 'Revenu total';
title j=center height=12pt 'Revenus';
run;
增加1到2,但如果var = 1
增加到2
这是在Ren&py; py完成的,但我不在乎,只要解决方案是Python代码。
目前,增加的代码是:
var = 1.5
(Ren' py specific)
我确信在Python中有一种简单的方法可以做到这一点,但我并不是100%确定要搜索的内容。
答案 0 :(得分:1)
您可以variable = int(variable + 1)
答案 1 :(得分:1)
添加1,然后向下舍入。 ("web_server": {
"listen_on": ["127.0.0.1", 0],
"www_directory": "www/public",
"index_files": ["index.html", "index.php"],
"cgi_interpreter": "php/php-cgi.exe",
"cgi_extensions": ["php"],
"cgi_temp_dir": "",
"404_handler": "/pretty-urls.php",
"hide_files": []
},
或int()
)