创建一个Springboot项目,勾选web将该项目创建git本地仓库,再创建远程仓库推送上去
创建TestController
RestController
RequestMapping("/test")
public class TestController { GetMapping("/hello") public String sayHelloJe…
VPC (Virtual Private Cloud):
参考:https://docs.aws.amazon.com/vpc/latest/userguide/what-is-amazon-vpc.html With Amazon Virtual Private Cloud (Amazon VPC), you can launch AWS resources in a logically isolated virtual network that you’ve defined…
一般debug时,在for循环里面的话,需要自己一步一步点。如果循环几百次那种就比较麻烦。此时可以采用try except的方式来解决
例子如下 #ptyhon debug for循环的代码
num[1,2,3,s,4]
ans0
for i in num:try:ansiexcept:print(错误)
print(ans) 结果如下&a…