美文网首页
python开发--变量

python开发--变量

作者: 阿耀王子 | 来源:发表于2018-04-10 21:07 被阅读0次

    学习变量,认识变量

    #! /usr/bin/env python
    # -*- coding:utf-8 -*-
    
    '''
    @Author:gcan
    @Email:1528667112@qq.com
    @Site:http://www.gcan.top
    @File:var.py
    @Software:PyCharm
    @Date:2018-04-10 20:18:47
    @Version:1.0.0
    '''
    
    
    message = "hello python world!"
    print(message)
    
    message = "Hello Python Crash Course World!"
    print(message)
    
    返回结果:
    hello python world!
    Hello Python Crash Course World!
    

    相关文章

      网友评论

          本文标题:python开发--变量

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