"12345"
"@#$%"
"Rajesh"
All of These
type()
data_type()
datatype()
dataType()
ascii()
getAscii()
get_ascii()
ord()
platform-independent
Low Level Language
Python is open-source and free to use
Object Oriented Programming
.py
.python
.ppt
.pyt
High Level
Object Oriented
Low Level
Both A and B
Boolean
Integer
Float
String
print('Hello Word')
print("Hello Word")
print(Hello Word)
1st_string
my_string_1
_mySring
infomax
Integrated Development and Learning Environment
Interpreted Development and Language Environment
Integrated Development and Language Environment
Integrated Designing and Language Environment
Complex Number
None
A variable can store any datatype type of value
A variable can store only numeric value
A variable can store only one type of value
A value of a variable is change each type when it run
One Time
Two Time
Any Number of Time
we can not change the value of variable
wd[4:]
wd[:4]
wd[-5:]
wd[:-4]
Append File
Write File
Read File
Read and Write both
pickle
binary
unpickle
fstream
dump()
write()
writeBinary()
load()
read binary
write binary
append binary
read write
What is the output of below program ?
def say(message, times =1): print(message * times) say("Hello") say("Word",5)
Hello WordWordWordWordWord
Hello Word 5
Hello Word,Word,Word,Word,Word
Hello HelloHelloHelloHelloHello