Notes on Programming
using System; namespace LearnCS { class Program { static void Main(string[] args) { for (int i = 0; i <= 500; i = i + 10) { Console.WriteLine(i); } } } }
First, let's make shure that our tkinter module is working ok with simple for loop that will spawn 5 instances of blank Tk window . ...
No comments:
Post a Comment