Python Forum
Someone please help a begginer
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Someone please help a begginer
#1
I have just downloaded my IDLE in my Chromebook running LXDE. But the python version is 3.4.3, I know this is an old version, of 2015 I guess, and I dont know how to update it.
Im a complete begginer in programing and linux, and Im reading the tutorial in the python's official website for the 3.4.8 version. How can I update the version, or I shouldnt care with this "minor" problem.
Thank you.
Reply
#2
(Mar-10-2018, 05:47 AM)leonr Wrote: or I shouldnt care with this "minor" problem.
You shouldn't care. Python 3.4.3 is perfect to learn and use python. Don't focus on the changes since 2015.
Reply
#3
Python 3.6 does, however have some major improvements.
Not the least of which is f-string which would definitely be an asset to learn from the get-go
It allows print statements like:
see: https://cito.github.io/blog/f-strings/

using Mike Drisccoll's example:
>>> import decimal
>>> gas_total = decimal.Decimal('20.345')
>>> width = 10
>>> precision = 4
>>> f'Your gas total is: {gas_total:{width}.{precision}}'
'Your gas total is:      20.34'
I have already started using it almost exclusively.

There are many other improvements like asynchronous generators and asynchronous comprehensions
which you won't use as a beginner, but they will be there when you do want to explore further.

to update, follow snippsat's tutorial here: https://python-forum.io/Thread-Basic-Par...nvironment
Reply
#4
Thank you very much for the answers
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Begginer problem with turtle Damien_X 1 2,217 Aug-25-2020, 11:23 AM
Last Post: GOTO10
  Begginer coding problem wiktor 2 3,343 Jan-26-2018, 06:24 PM
Last Post: wiktor

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020