What would be a numpy function that goes through array a and then appends the endswidth to the end of each string in the a array.
Code:
a = np.array(["BTC", "ETH", "AUD", "DOGE"])
endswidth = "USD"
Expected output:
[BTCUSD, ETHUSD, AUDUSD, DOGE]