zoukankan      html  css  js  c++  java
  • pycharm的安装和使用

    python开发IDE:  pycharm、eclipse

      1.要专业版

      2.不要汉化版

    一.运算符

           +  -  * 、/  **   %  //

    判断某个东西是否在东西里面包含

    in   not  in

    注意:

    基本数据类型:

        数字    int   所有的功能,都放在int里面

          a1  =  123

          a2  =  456

         字符串   str   所有的功能,都放在str里面

           s1  = "sadf"

           s2  =  "asdffas"

        列表    list   所有的功能,都放在list里面

             ........

         元祖  tuple   所有的功能,都放在tuple里面

             .........

         字典   dict  所有的功能,都放在dict里面

          ........

        布尔值   bool   所有的功能,都放在bool里面

          .......

  • 相关阅读:
    UVa-10317
    UVa-1595
    UVa-10391
    UVa-10763
    UVa-10935
    UVa-1594
    UVa-1593
    从CSDN搬过来了
    memset会显著增加时间和空间的消耗吗
    memset对数组的初始化
  • 原文地址:https://www.cnblogs.com/huangjiangyong/p/10306775.html
Copyright © 2011-2022 走看看