Python for Engineers
Solve Problems by Coding Solutions - A Complete solution for python programming
Blog Pages
(Move to ...)
Code
Top 10 Blogs
NumPy Tutorials
Distributions
Self Learning
IDE
Packages
About
▼
Converting a for loop to corresponding while loop
for count in range(0,100,2):
print 'For:',count
count1 =0
while(count1<100):
print 'While:',count1
count1=count1+2
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment