Python Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPython Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 26th, 2013, 09:55 PM
python_user python_user is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2013
Posts: 4 python_user User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 36 sec
Reputation Power: 0
Newbie question

def func1(a,b,c):
e = a + b/c
return formatted(e)

def func2(f,g,h,i):
j = func1(f,g,h) + i
return formatted(k)

def func3(f,g,h,i):
j = (f + g/h) + i
return formatted(j)


def formatted(a):
return ("$%.2f" % a)

When I run the below....

print(func1(1,2,3))
print(func2(1,2,3,4))
print(func3(1,2,3,2))


I get

Traceback
<module> D:\Python33\test.py 18
func2 D:\Python33\test.py 6
TypeError: Can't convert 'int' object to str implicitly


If I run this

print(func1(1,2,3))
print(func3(1,2,3,2))

it runs fine..

>>>
$1.67
$3.67


What Am I doing wrong, I need the func2 format to work especially with float as the last parameter.

Thanks for looking.

Reply With Quote
  #2  
Old January 27th, 2013, 11:06 AM
Nyktos Nyktos is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 74 Nyktos User rank is Corporal (100 - 500 Reputation Level)Nyktos User rank is Corporal (100 - 500 Reputation Level)Nyktos User rank is Corporal (100 - 500 Reputation Level)Nyktos User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 2 h 25 m 57 sec
Reputation Power: 2
You can't add a float to a string.

Also, your func2 references a "k" variable does doesn't exist.

Reply With Quote
  #3  
Old January 27th, 2013, 11:09 AM
python_user python_user is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2013
Posts: 4 python_user User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 36 sec
Reputation Power: 0
Hi I figured this out. I will post the solution in case it may help someone.

The return value from func1 is a string. You can not add float or int to a string. The return has to be converted to a float.

def func1(a,b,c):
e = a + b/c
return formatted(e)

def func2(f,g,h,i):
Code:
Original - Code
    j = float(func1(f,g,h)) + i

return formatted(j)

def func3(f,g,h,i):
j = (f + g/h) + i
return formatted(j)


def formatted(a):
return ("%.2f" % a)

print(func1(1,2,3))
print(func2(2,3,4,4))
print(func3(1,2,3,2))

This work fine.

Reply With Quote
  #4  
Old January 27th, 2013, 11:12 AM
python_user python_user is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2013
Posts: 4 python_user User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 36 sec
Reputation Power: 0
Thanks sir, I think we were writing the answer at the same time.

Reply With Quote
  #5  
Old January 27th, 2013, 11:13 AM
python_user python_user is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2013
Posts: 4 python_user User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 42 m 36 sec
Reputation Power: 0
Could you please tell me, how can I format the output like in my original post

Thanks

Reply With Quote
  #6  
Old January 27th, 2013, 01:19 PM
b49P23TIvg's Avatar
b49P23TIvg b49P23TIvg is offline
Contributing User
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Aug 2011
Posts: 3,352 b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 3 Days 7 h 49 m 23 sec
Reputation Power: 383
Your original function contained a $ character.


def formatted(a):
return ("$%.2f" % a)
__________________
[code]Code tags[/code] are essential for python code!

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPython Programming > Newbie question

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap