Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1097307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:24:48+00:00 2026-05-17T00:24:48+00:00

I have some values that I want to write in a text file with

  • 0

I have some values that I want to write in a text file with the constraint that each value has to go to a particular column of each line.

For example, lets say that I have values = [a, b, c, d] and I want to write them in a line so that a is going to be written in the 10th column of the line, b on the 25th, c on the 34th, and d on the 48th column.

How would I do this in python?

Does python have something like column.insert(10, a)? It would make my life way easier.

I appreciate your hep.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T00:24:49+00:00Added an answer on May 17, 2026 at 12:24 am

    In this case, I’d think you’d just use the padding functions with python’s string formatting syntax.

    Something like "%10d%15d%9d%14d"%values will place the right-most digit of a,b,c,d on the columns you listed.

    If you want to have the left-most digits placed there, then you could use: "%<15d%<9d%<14d%d"%values, and prepend 10 spaces.

    EDIT: For some reason I’m having trouble with the above syntax… so I used the newstyle formatting syntax like so:

    " "*9 + "{:<14}{:<9}{:<14}{}".format(*values)

    This should print, for values=[20,30,403,50]:

    .........                                        <-- from " "*9
             20............                          <-- {:<14}
                           30.......                 <-- {:<9}
                                    403...........   <-- {:<14}
                                                  50 <-- {}
    ----=----1----=----2----=----3----=----4----=----5    <-- guide
             20            30       403           50 <-- Actual output, all together
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code that produces a set of primary key values that I
I have some code that prints out databse values into a repeater control on
I have about 10million values that I need to put in some type of
I have a simple class that essentially just holds some values. I have overridden
I have some code that looks like this: someFunc(value) { switch(value){ case 1: case
I have some configuration values for an asp.net web app. They will be maintained
The Back Story I have some decimal values which I am displaying as strings
I have xml where some of the element values are unicode characters. Is it
I have a URL which requires some parameters. The values of those parameters can
Greetings! I have some XML like this: <Root> <MainSection> <SomeNode>Some Node Value</SomeNode> <SomeOtherNode>Some Other

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.