This media is not supported in your browser
VIEW IN TELEGRAM
How to see the output in mobile
Python app
Python app
Python programming codes
Defaultargument(function).py.pdf
Default arguments in python program using functions
Units of Computer. Memory Measurement
1 bit = Binary digit
8 bits = 1 Byte
1024 byte = 1 kilo bytes
1024 KB = 1 Mega bytes
1024 MB = 1 Giga bytes
1024 GB = 1 Tera bytes
1024 TB = 1 Peta bytes
1024 PB = 1 Exa bytes
1024 EB = 1 Zetta bytes
1024 ZB = 1 Yotta bytes
1024 YB = 1 Bronto bytes
1024 BB = 1 Geop bytes
1 bit = Binary digit
8 bits = 1 Byte
1024 byte = 1 kilo bytes
1024 KB = 1 Mega bytes
1024 MB = 1 Giga bytes
1024 GB = 1 Tera bytes
1024 TB = 1 Peta bytes
1024 PB = 1 Exa bytes
1024 EB = 1 Zetta bytes
1024 ZB = 1 Yotta bytes
1024 YB = 1 Bronto bytes
1024 BB = 1 Geop bytes
import numpy as np
arr = np.array([1, 2, 3])
print("Array with Rank : \n",arr)
arr = np.array([1, 2, 3])
print("Array with Rank : \n",arr)
import numpy as np
arr = np.array([[1, 2, 3],[4, 5, 6]])
print("Array with Rank : \n", arr)
arr = np.array([[1, 2, 3],[4, 5, 6]])
print("Array with Rank : \n", arr)