SMsindhu minsaisindhu.hashnode.dev·Jul 31, 2024 · 1 min readType Casting Techniques in PythonThe purpose of Type Casting Techniques is in python is that "To Convert one Type of value into Another Possible Type of value". in python programming we have 5 fundamentals Type Casting Techniques They are: 1.int() 2.float() 3.bool() 4.complex() 5.st...00
SMsindhu minsaisindhu.hashnode.dev·Jul 16, 2024 · 1 min readSingle line String Data and Multi line String Data Examples.Example 1: a="Java Programming language" print(a,type(a)) output: Java Programming language <class 'str'> Example 2: 1.s='Python Programming language' print(s,type(s)) output:Python Programming language <class 'str'> 2.s2="a" print(s2,type(s2)) outpu...00
SMsindhu minsaisindhu.hashnode.dev·Jul 16, 2024 · 1 min readUnderstanding of "STRING" in python.This is the sequential category data type: 1.what is string? A) String is one of the predefined class and treated a sequence data type. String is a collection of charcters or Alpha numeric data or numeric data or any type of data enclosed with single...00