• 浅尝python语法,挺有意思的与c#语法做了对比 原创 create by lee


      浅尝python语法,挺有意思的。

    ////////////////////////////////////////////////////////////////
    >>> # Measure some strings:
    ... a = ['cat', 'window', 'defenestrate']
    >>> for x in a:
    ...     print(x, len(x))
    ...
    cat 3
    window 6
    defenestrate 12

    ////////////////////////////////////////////////////////////////

    >>> for x in a[:]: # make a slice copy of the entire list
    ...    if len(x) > 6: a.insert(0, x)
    ...
    >>> a
    ['defenestrate', 'cat', 'window', 'defenestrate']

    >>> for i in range(5):
    ...     print(i)
    ...
    0
    1
    2
    3
    4

    代码
    ////////////////////////////////////////////////////////////////
    >>> a = ['Mary''had''a''little''lamb']
    >>> for i in range(len(a)):
    ...     
    print(i, a[i])
    ...
    0 Mary
    1 had
    2 a
    3 little
    4 lamb

     //与c#做对照 
      

    代码
    static void Main(string[] args)
            {
                
    string[] strArrary = { "a","b","c","d","e","f"};
                
    for (int i = 0; i < strArrary.Length; i++)
                {
                    Console.WriteLine(
    "{0},{1}",i,strArrary[i]);
                }
            }

  • 相关阅读:
    iOS开发UIKit框架-可视化编程-XIB
    ios swift例子源码网址总结
    两个单链表相交问题
    库函数atoi
    C++类型萃取
    【Swift】iOS导航栏错乱的原因
    【Swift】iOS裁剪或者压缩后出现的白边问题
    Linux进程调度分析
    【scala】可变与不可变的理解
    【scala】模式匹配
  • 原文地址:https://www.cnblogs.com/chenli0513/p/1869030.html
Copyright © 2020-2023  润新知