Python
By default, each print statement prints text in a new line. If we want multiple print statements to print in the same line, we can use the following code: print("Sasmit",end =" ") print("is working in capgemini") o/p: Sasmit is working in capgemini Comments # Comments are pieces of text used to describe what is happening in the code. They have no effect on the code whatsoever. A comment can be written using the # character: if u want to write multi-line comments: then enclosed with """(triple quotes) print(""" Hi This is Sasmit from jungle and you can have a cup of coffee with me at evening time""") o/p: Hi This is Sasmit from jungle and you can have a cup of coffee with me at evening time DataTypes: The language provides three main data types: Numbers Strings Booleans Variables are mutable. Hence, the value of a variable can always be updated or replaced. To create complex number: complex(real, imaginary) eg: ...