摘要:
1、for循环遍历字符串: string="人生苦短,我用Python" print(string) for ch in string: print(ch) for 循环语句还可以用于迭代(遍历)列表、元组、集合和字典等。 2、循环嵌套: (1)while循环套用while循环的格式: while 阅读全文
摘要:
1、Python保留字与标识符 保留字是Python语言中一些已经被赋予特定意义的单词,开发程序时,不可以把这些保留字作为变量、函数、类、模块和其他对象的名称来使用。 and as assert break class continue def del clif else except finall 阅读全文