by Yogesh | Nov 1, 2017 | Python Tutorial
What is Dictionary a built-in data structure available in Python a dictionary is a sequence of key-value, or item, pairs separated by commas. Ex port = {22: “SSH”, 23: “Telnet” , 53: “DNS”, 80: “HTTP” } . In a list,...
by Yogesh | Nov 1, 2017 | Python Tutorial
What is List: a built-in data structure available in Python a list of comma-separated values (items) between square brackets. It can contain heterogeneous values such as integers, floats, strings, tuples, lists, and dictionaries. Python lists are mutable; yes, they...
by Yogesh | Oct 31, 2017 | Python Tutorial
Basics of Python Strings. A Python string is a sequence, which consists of zero or more characters. The string is an immutable data structure, which means they cannot be changed. String Function Len function: In order to find the length of the string. Ex len(string...
by Yogesh | Oct 22, 2017 | Asp .net MVC
Example of RadioButtonfor helper with entity framework HtmlHelper class include two extension methods to generate a element in a razor view: RadioButton() and RadioButtonFor(). RadioButton() method Signature: MvcHtmlString RadioButton(string name, object value, bool...
by Yogesh | Oct 22, 2017 | Asp .net MVC, Entity Framework Tutorial
Example of Checkboxfor helper with entity framework Html helper class have two methods to generate checkboxes( Checkbox() –Loosely Typed MvcHtmlString CheckBox(string name, bool isChecked, object htmlAttributes) Checkboxfor() –Strongly Typed (It...