Q:

Python | Printing different values (integer, float, string, Boolean)

belongs to collection: Python basic programs

0

Python | Printing different values (integer, float, string, Boolean)

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

# printing integer value 
print(12)
# printing float value 
print(12.56)
# printing string value 
print("Hello")
# printing boolean value 
print(True)

Output

12
12.56
Hello
True

Arithmetic operations inside the print() on values

# adding and printing integer value 
print(12+30)
# adding and printing float value 
print(12.56+12.45)
# adding and printing string value 
print("Hello"+"World")
# adding and printing boolean value 
print(True+False)

Output

42
25.009999999999998
HelloWorld
1

Printing different types of variables

# variable with integer value
a=12
# variable with float value
b=12.56
# variable with string value
c="Hello"
# variable with Boolean value
d=True

# printing all variables 
print(a)
print(b)
print(c)
print(d)

Output

12
12.56
Hello
True

Printing different types of variables along with the messages

# variable with integer value
a=12
# variable with float value
b=12.56
# variable with string value
c="Hello"
# variable with Boolean value
d=True

# printing values with messages 
print("Integer\t:",a)
print("Float\t:",b)
print("String\t:",c)
print("Boolean\t:",d)

Output

Integer : 12
Float   : 12.56
String  : Hello
Boolean : True

Printing different types of variables with messages and converting them to string using "str()" function

# variable with integer value
a=12
# variable with float value
b=12.56
# variable with string value
c="Hello"
# variable with Boolean value
d=True

# printing values with messages 
print("Integer\t:"+str(a))
print("Float\t:"+str(b))
print("String\t:"+str(c))
print("Boolean\t:"+str(d))

Output

Integer :12
Float   :12.56
String  :Hello
Boolean :True

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python basic programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Python | Declare different types of variables, pri... >>
<< Python program to print given text using a user-de...