Python List / Tuple

时间:2017-02-23 11:00:58

标签: python

您好我想修改我的列表,以便通过元组在给定坐标处显示(x)。

到目前为止,这是我的代码

#w=width
#h=height
#c=coordinates

new_grid = []
def coordinates(w,h,c):
    '''    
    >>> coordinates(2, 4, (0, 1))
    >>> print(new_grid)
    [['(_)', '(x)'], ['(_)','(_)'], ['(_)', '(_)'], ['(_)', '(_)']]
    '''
    b=[]
    for i in range(h):
        new_grid.append(b)
    for  j in range(w):
        c=('(_)')
        b.append(c)

我不确定如何在给定的坐标处实现(x​​),任何帮助都表示赞赏 谢谢。

0 个答案:

没有答案