PYTHON BUILT-IN FUNCTIONS & METHODS (MCA SEM 1 - 4)
1. BASIC FUNCTIONS
print(), input(), len(), type(), id()
int(), float(), str(), bool()
2. STRING METHODS
upper(), lower(), title(), strip(), replace(), split(), join(), find(), count()
3. LIST METHODS
append(), extend(), insert(), remove(), pop(), sort(), reverse()
4. TUPLE METHODS
count(), index()
5. DICTIONARY METHODS
keys(), values(), items(), get(), update(), pop()
6. SET METHODS
add(), remove(), union(), intersection(), difference()
7. CONTROL FLOW
range(), enumerate(), zip(), break, continue, pass
8. FUNCTIONS
def, return, lambda, map(), filter()
9. FILE HANDLING
open(), read(), write(), close()
10. EXCEPTION HANDLING
try, except, finally, raise
11. OOP
class, __init__(), isinstance(), super()
12. REGEX
[Link](), [Link](), [Link]()
13. THREADING
start(), join(), is_alive()