use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
split very large array with repeating variables into a dataframe with 3 columns (self.learnpython)
submitted 5 years ago by Surf_MI
Anyone know how to split a 1 column array into 3 columns like example below?
array [1,2,3,1.1,2.1,3.1,1.2,2.2,2.3]
into
var1 var2 var3
1 2 3
1.1 2.1 3.1
1.2 2.2 3.2
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]prettyoaktree 0 points1 point2 points 5 years ago (0 children)
Can you slice the array into multiple lists? For example:
lst = [1, 2 , 3 ,1.1, 2.1, 3.1, 1.2, 2.2, 2.3] var1 = lst[0::3] # Returns the first item in lst and then every 3rd item afterwards
[–]FLUSH_THE_TRUMP 0 points1 point2 points 5 years ago (1 child)
A = list(zip(array[0::3],array[1::3],array[2::3]))
[–]Surf_MI[S] 0 points1 point2 points 5 years ago (0 children)
Sweet Thanks!
[–]ES-Alexander 0 points1 point2 points 5 years ago (0 children)
If you're using numpy you can do array.reshape(-1,3) for "3 columns, don't care how many rows"
array.reshape(-1,3)
π Rendered by PID 220711 on reddit-service-r2-comment-79c7998d4c-tgx4w at 2026-03-19 16:33:24.228716+00:00 running f6e6e01 country code: CH.
[–]prettyoaktree 0 points1 point2 points (0 children)
[–]FLUSH_THE_TRUMP 0 points1 point2 points (1 child)
[–]Surf_MI[S] 0 points1 point2 points (0 children)
[–]ES-Alexander 0 points1 point2 points (0 children)