美文网首页
Python Basic

Python Basic

作者: asuka_19d5 | 来源:发表于2018-10-18 06:01 被阅读0次
    • python is an interpreter language
    Variables and Basic Statements:
    • 2/3 = 0 #python2
      2/3 = 0.67 #python3
    • python variable types: int float char str
    • type coercions: int() float()
      • if a str is formed by all digits, we can convers it to int using int()
    • raw_input() #python2
      input() #python3

    相关文章

      网友评论

          本文标题:Python Basic

          本文链接:https://www.haomeiwen.com/subject/xmflzftx.html