This blog article shows you how to convert a C# Loop to Python. Convert the following common C# For Loop to python.
for (int i=0; i < 10; i++)
Console.Writeline(i);}
The Python For Loop will be as follow.
for i in range(10):
print(i)
This Python code will produce the same output as the C# code you provided. The range() function in Python generates a sequence of numbers, starting from 0 by default, and increments by 1 (by default) and stops before a specified number. In this case, the range(10) function generates a sequence of numbers from 0 to 9, which is equivalent to the C# code for (int i=0; i < 10; i++). The print() function in Python is used to display the value of i on the console, which is equivalent to the C# code Console.Writeline(i).
Note that C# can group the statement run under a For Loop with the braces {} but Python will need to depend on the indentation which could be quite misleading.
Also: ‘jupyter’ is not recognized as an internal or external command
Reference: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/statements/iteration-statements/?WT.mc_id=DP-MVP-36769
https://wiki.python.org/moin/ForLoop?WT.mc_id=DP-MVP-36769
About chanmingman
Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years.
Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
Pingback: Crop Image using Python | Chanmingman's Blog