Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box 🎁☑️
Download Telegram
How to see the output in mobile
Python app
This media is not supported in your browser
VIEW IN TELEGRAM
How to see the output in mobile
Python app
Write a simple program using function on python
Write a none return function?
Python programming codes
Defaultargument(function).py.pdf
Default arguments in python program using functions
String print in right angle shape
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
Using matplotlib package
Bar graph draw
Output
Numpy using creating arrays
import numpy as np
arr = np.array([1, 2, 3])
print("Array with Rank : \n",arr)
Output:


Array with Rank :
[1 2 3]

[Program finished]
import numpy as np
arr = np.array([[1, 2, 3],[4, 5, 6]])
print("Array with Rank : \n", arr)