垂天之云 发表于 2021-3-30 11:55:30

Debugger无法使用

def hanota(n, x='x', y='y', z='z'):
    if n == 1:
      print(x, '-->', z)
    else:
      hanota(n-1, x, z, y)
      print(x, '-->', z)
      hanota(n - 1, y, x, z)


hanota(3)

图片不知道为什么上传不了。我仔细的描述下。
左下角的Debugger模块下面显示的是“Frames are not available”
"Debugger"右边是"Console",右侧是"Show Execution Point""Step Over""Step Into"等功能,但是这几个功能都是暗色的,不能点。
“Frames”模块右边是"Variables"模块,下面显示的是"Connected",前面有个蓝色的圆圈,中间有个叹号。

z5560636 发表于 2021-3-30 15:02:10

感觉不到你想说啥。

垂天之云 发表于 2021-3-30 21:30:29

z5560636 发表于 2021-3-30 15:02
感觉不到你想说啥。

pycharm的Debugger无法使用。不过现在找到原因了。
页: [1]
查看完整版本: Debugger无法使用