Example & Tutorial understanding programming in easy ways.

What is a String in Python?

- String is a immutable datatype in python

- It is collection of alpha-numeric character.


Example:

s="Mystring123"


-Any input from the user in the python language (by input() function) is always a string

-To identify the type of variable we use type(variable)

Read More →