python与mel基础语法区别
其实所有编程语言的差异在概念上的差异都很小,只是有些功能更多,涵盖量更大更复杂,而有些功能少,但简单易学
这里来一起看下mel与python语法上的差别
首先归类为以下几点
1, 变量
mel:
string$st="helloworld";
int$it=5;
float$ft=2.5;
float$doubleft=$ft+$ft;
string$doublest=$st+$st;
int$powit=$it*$it;
string$it="helloworld";
//Error:Invalidredeclarationofvariable"$it"as
下载地址
用户评论