<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">2014-03-11 12:56 GMT+01:00 Geo DrinX <span dir="ltr"><<a href="mailto:geodrinx@gmail.com" target="_blank">geodrinx@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div dir="ltr"><div>Hello All,<br><br><br></div>as in object,  I had an error from python, with my source code, that I do not understand <br><div><div><br><br>    CamNick = 90 - int(pitch)<br>ValueError: invalid literal for int() with base 10: '36.30'<br>

<br><br></div><div>Somebody can help me to understand why   "36.30"  is not  good to reurn an int value ?<br><br></div><div>For me, is a mistery.  :(<br></div></div></div></blockquote><div><br></div><div><br></div>
<div>You can't convert a string that represents a float to an integer, you should first convert to float then to int:</div><div><br></div><div>int(float('36.30'))<br></div><div><br></div><div>BTW this kind of questions should not be asked here but on one of the several python mailing lists.</div>
<div><br></div></div><div><br></div>-- <br>Alessandro Pasotti<br>w3:   <a href="http://www.itopen.it">www.itopen.it</a>
</div></div>