``` language import torch from torch.autograd import Variable # torch 中 Variable 模块 tensor=torch.FloatTensor([[1,2],[3,4]]) print(tensor) ``` 