Python知识汇总2
10、写代码[*]a. 使用while循环实现输出2-3+4-5+6...+100 的和
count=2num=0while count<=100 : if count % 2 ==0 : num=count+num count+=1 else: num=num-count count+=1print(num)
[*]b. 使用for循环和range实现输出 1-2+3-4+5-6...+99 的和
num=0count=1for count in range(100) : if count % 2 == 0 : num=num - count else : num=num+countprint(num)
[*]c. 使用 while 循环实现输出 1,2,3,4,5, 7,8,9, 11,12
count=1while count < 13 : if count !=6 : if count !=10 : print(count) count+=1
[*]d. 使用 while 循环实现输出 1-100 内的所有奇数
for i in range(101) : if i %2 != 0 : print(i)count=0while count<100 : if count %2 != 0 : print(count) count += 1
[*]e. 使用 while 循环实现输出 1-100 内的所有偶数
for i in range(100) : if i %2 == 0: print(i)count=0while count<100 : if count%2 == 0 : print(count) count+=111、分别书写数字 5,10,32,7 的二进制表示print(bin(5))二进制 0b101print(hex(10))十六进制0x5print(oct(5))八进制0o5
支持分享
页:
[1]