Blog / Python
42 Posts

Python
Record the execution of a py script using the nohup command

Sure, please provide the content you would like translated to English.

查看全文
Python
Common Methods of Numpy and Pandas

Introduction to Numpy Installation and import methods `pip install numpy` `import numpy as np` Usage demonstration (including random usage) `random.uniform(param1, param2)` Generates a floating-point number between 1 and 2 `random.uniform(100.0, 200.0)` Randomly generates a floating-point number between 100 and 200 `random.randint(param1, param2)` Randomly generates an integer between 1 and 2 `np.array(list)`

查看全文