<section>前往下载 http://icourse8.com/ctqxmksc.html </section>章节详情
第1章 导学及SpringCloud基石SpringBoot
第2章 基于Spring Boot快速构建天气预报系统
第3章 服务拆分与业务建模
第4章 天气预报系统的微服务架构设计与实现
第5章 微服务的协调者Spring Cloud
第6章 微服务的注册与发现
第7章 微服务的消费
第8章 API 网关
第9章 微服务的集中化配置
第10章 微服务的熔断机制
第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