Skip to main content

According to Data Science Topic-9 Literals

 a = 0b1010 #Binary Literals

b = 100 #Decimal Literal
c = 0o310 #Octal Literal
d = 0x12c #Hexadecimal Literal

#Float Literal
float_1 = 10.5
float_2 = 1.5e2 # 1.5 * 10^2
float_3 = 1.5e-3 # 1.5 * 10^-3

#Complex Literal
x = 3.14j

print(a, b, c, d)
print(float_1, float_2,float_3)
print(x, x.imag, x.real)

# binary
x = 3.14j
print(x.imag)
3.14
string = 'This is Python'
strings = "This is Python"
char = "C"
multiline_str = """This is a multiline string with more than one line code."""
unicode = u"\U0001f600\U0001F606\U0001F923"
raw_str = r"raw \n string"

print(string)
print(strings)
print(char)
print(multiline_str)
print(unicode)
print(raw_str)
This is Python This is Python C This is a multiline string with more than one line code. 😀😆🤣 raw \n string
k = None
a = 5
b = 6
print('Program exe')
Program exe
a = 0b1010 # Binary Literals print(a) # binary c = 0o310 # Octal Literals print(c) c = 0o310 print(1.5e3) # 1.5* 10^3 print(1.5e-3) # 1.5* 10^-3 x = 3.14j print(x) x = 3.14j print(x.real, x.imag)
10 200 1500.0 0.0015 3.14j 0.0 3.14


[ ]

Comments

Popular posts from this blog

According to Data Science Topic-13 Modules

Functions in Python:

According to Data Science Topic-12 If else program examples