Python Basics

Author
Affiliations

Md Rasheduzzaman

Last updated

August 14, 2024

Content summary
Variable, Object, vector, fucntions, etc.

Intro

print("Hello, world!")
Hello, world!

np array

# Your Python code
#py_install("numpy"")
import numpy as np

arr = np.array([1, 2, 3, 4, 5])
print(arr * 2)
[ 2  4  6  8 10]

Citation

BibTeX citation:
@online{rasheduzzaman2024,
  author = {Md Rasheduzzaman},
  title = {Python {Basics}},
  date = {2024-08-14},
  langid = {en},
  abstract = {Variable, Object, vector, fucntions, etc.}
}
For attribution, please cite this work as:
Md Rasheduzzaman. 2024. โ€œPython Basics.โ€ August 14, 2024.

๐Ÿ’ฌ Have thoughts or questions? Join the discussion below using your GitHub account!

You can edit or delete your own comments. Reactions like ๐Ÿ‘ โค๏ธ ๐Ÿš€ are also supported.