The first program code python print an integer of 1 to 100

main DEF ():
# print an integer from 1 to 100.
I =. 1
the while I <= 100:
Print (I)
I + =. 1
IF __name__ __ == '__ main__':
main ()

 

Guess you like

Origin www.cnblogs.com/xilige/p/10947449.html