Node.js入门到企业Web开发中的应用

283 阅读1分钟

<p>课程地址: http://icourse8.com/Nodejs_qiyeWeb.html</p>

课程章节

第1章 课程内容介绍 

第2章 NodeJS 是什么,为什么偏爱NodeJS? 

第3章 环境 & 调试 

第4章 NodeJS 基础 API 

第5章 项目初始化 

第6章 案例项目--静态资源服务器 

第7章 本地构建 

第8章 单元测试 & UI 测试 

第9章 UI 测试常用工具 

第10章 案例项目--headless 爬虫 

第11章 课程总结

class Solution:
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        if x < 0:
            return False
        else:
            y = str(x)[::-1]
            if y == str(x):
                return True
            else: 
                return False