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

  • Home
  • SEARCH
  • 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 8301715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T17:06:55+00:00 2026-06-08T17:06:55+00:00

trying to use input variable inside statement. def email(account): email = fabric.operations.prompt(Enter client’s email

  • 0

trying to use input variable inside statement.

def email(account):
    email = fabric.operations.prompt("Enter client's email address:")
    run('mysql -u %s -p%s -e "UPDATE users SET email = %email WHERE id = 1" %s' % (env.user, dbpasswd, account))

Error:

  File "/tmp/fabfile.py", line 196, in email
    run('mysql -u %s -p%s -e "UPDATE users SET email = %email WHERE id = 1" %s' % (env.user, dbpasswd, account))
TypeError: float argument required, not str

any idea!

  • 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-06-08T17:06:56+00:00Added an answer on June 8, 2026 at 5:06 pm

    %email this should be your problem,

    string replacement encounters %e in %email before the last %s

    In [4]: a = "1.2"
    
    In [5]: print "%s" %a
    1.2
    
    In [6]: print "%e" %a
    ---------------------------------------------------------------------------
    TypeError                                 Traceback (most recent call last)
    C:\Python27\<ipython-input-6-1d66dedeb226> in <module>()
    ----> 1 print "%e" %a
    
    TypeError: float argument required, not str
    

    the simplest work around would be :

    cmd = 'mysql -u %s -p%s -e "UPDATE users SET email = ' %(env.user, dbpasswd) + '%email' + ' WHERE id = 1" %s' %account
    
    run(cmd)
    

    or you could also do

    data = "%email"
    run('mysql -u %s -p%s -e "UPDATE users SET email = %s WHERE id = 1" %s' % (env.user, dbpasswd, data, account))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use an if statement to determine if a certain variable
I am trying to pass a string variable inside asp.net MVC. I use breakpoints
I'm trying to use Selenium WebDriver to input text to a GWT input element
I am trying to use a result from one query as input for another
I'm trying to use a RegularExpressionValidator to validate a TextBox input length. I have
i`ve been trying o use fscanf to read the an input file on my
I am trying to use jquery's parents/siblings to find particular input elements but I
I am trying to use JTidy (jtidy-r938.jar) to sanitize an input HTML string, but
I'm trying to use a .NET Regex to validate the input format of a
I've been trying to use Robot from awt, to input some text on a

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.