首页 > 编程语言 > 详细

Python编程和 Lua编程的比较

时间:2017-02-21 22:00:05      阅读:218      评论:0      收藏:0      [点我收藏+]

Python编程和 Lua编程的比较

2016.4.21


 

  1. 定义函数:
    • python:  
      def functionname( parameters ):
         "函数_文档字符串"
         function_suite
         return [expression]
    • lua:  
      --[[ function returning the max between two numbers --]]
      function max(num1, num2)
      
         if (num1 > num2) then
            result = num1;
         else
            result = num2;
         end
      
         return result; 
      end

 

 

  未完,待续……

 

Python编程和 Lua编程的比较

原文:http://www.cnblogs.com/swje/p/5416538.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!