И иногда ощущается острая нехватка совета более опытного коллеги, знающего подводные камни, который мог бы подсказать, направить
It is also special in that the server could have sent the same header multiple times with different values, but requests combines them so they can be represented in the dictionary within a single mapping, as per RFC 7230:
A recipient MAY combine multiple header fields with the same field name into one “field-name: field-value” pair, without changing the semantics of the message, by appending each subsequent field value to the combined field value in order, separated by a comma.
#!/bin/bash
IFS='
'
exec 3<>data.txt
while read -u 3 line
do
(
IFS=' '
result=()
for word in $line
do
[[ ! "${result[*]}" =~ "$word" ]] && result=(${result[*]} $word)
done
echo ${result[*]}
)
done
A = np.arange(0, 15).reshape(5, 3)
B=A.ravel()
D=A.flatten()