摘要:
点击查看代码 import torch from torch import optim import torch.nn as nn import torch.nn.functional as F from torch.autograd import Variable from torchvision 阅读全文
摘要:
5.1 点击查看代码 #5.1 字符田字格绘制 def TianZiGe(n): a = 5*n+1 for i in range(1,a+1): if i%5 == 1: print("+ " * n+"+") else: print("| " * n+"|") def main(): n = i 阅读全文