Description You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language. Fortunately, you have a dictionary to help you understand them. Input Input consists of up to 100,000 dictionary ent…
'''1.1使⽤循环打印以下效果: ***************''' for a in range(1,6): print(a*'*') '''1.2: ***** **** *** ** * ''' for a in range(1,6): print((6-a)*'*') '''1.3: * *** ***** ******* *********''' for a in range(1,10,2): print(a*'*') '''2.输入⼀个⼴告标语. 判断这个广告是否合法.根据最新的…