IP属地:广西
Find Pascal's Triangle n=4lst1=[1,0]for i in range(1,n+1): lst2=[0]*(i+...
1.Compare and sort some number a=int(input("number is: ")) #逻辑运算b=int(in...
Print all of prime number within 100 import mathimport datetimestart = d...
1.Find the circumference and area of the circle n=int(input("R="))print(...
Enter a 5-digit number, Determine the number of digits, and print one di...
1.Printmultiplication table #99乘法表for i in range(1,10): sum=""for j in r...
1.Print aSquare with an edge length of N 打印一个边长为N的正方形 n = int(input(">>>...