Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
3.00/5 (3 votes)
See more:
HI,

Here is the improved code.. In fact here i was trying to check string by mistake.. "second" is a string

VB
i = random.uniform(-9.99999999999,9.99999999999)                
        j = random.randint(-499,499)                            
        k = random.uniform(-9.99999999999,9.99999999999)
        l = random.randint(-499,499)                            
        first = str(i) + 'EEX' + str(j)
        second = str(k) + 'EEX' + str(l)
        f.writelines(["[TEST COMPLEX_Real%0.0f]  conj(" % (n) + first + '+' + second + ")\n" ])
        second = atof(second)
        second = second * (-1)
        f.writelines(["[EXPECTED]" + first + "," + second + "\n [BINARY] 0\n[PRIORITY]\n" ])


i want to convert variable second to floating point number.

please help me to sort out this Issue.

Thanks in advance.
Posted
Updated 11-Mar-11 2:33am
v4
Comments
Sergey Alexandrovich Kryukov 11-Mar-11 2:53am    
Show more code, where "second" is assigned. Show exact indentation, which is important in Python or use full syntax.
--SA
Dalek Dave 11-Mar-11 3:17am    
Edited for Grammar and Readability.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900