TORONTO KIDS COMPUTER CLUB | Python趣味编程初级
16421
sfwd-lessons-template-default,single,single-sfwd-lessons,postid-16421,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive,learndash-cpt,learndash-cpt-sfwd-lessons,learndash-template-ld30,learndash-cpt-sfwd-lessons-16421-current,learndash-cpt-sfwd-courses-16419-parent,learndash-embed-responsive

Python趣味编程初级

02 Aug Python趣味编程初级

Get your python ready!

  • Go to python.org to download latest python installation file.
  • There are a couple of ways to start using Python. The one we will use for now is called IDLE.


Try the following coding in the IDLE window:

>>> print(8 + 9)
>>> print(12 - 7)
>>> print(4 * 6)
>>> print(9 / 3)
>>> print("super" + "man")
>>> print("I love pizza" * 10)
No Comments

Sorry, the comment form is closed at this time.