using System; using System.Collections.Generic; using System.Text; namespace Tensorflow { /// /// Mapping C# functions to Python /// public class Python { protected void print(object obj) { Console.WriteLine(obj.ToString()); } } }