Print Input Comments Variables Indentation
Print Input Comments Variables Indentation
# Printing
print("Hello World!")
# String Manipulation
# 1) \n for new line
print("Hello" + "Name")
# 3) For Spaces
# Indentation
print("")
# After receiving the data from the user the function replaced with
data from user
# Variables
# 1) Used to store data in them and they are mutable (Data can be
re-assigned to it) and any type of data
name = "Kadapa"
print(name)
name = "Hello"
print(name)
name = 123
print(name)
print(name)
length = len(name)
print(length)