python的注释及简单的用户输入输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的注释及简单的用户输入输出相关的知识,希望对你有一定的参考价值。
单行注释 用#
多行注释 用三个单引号或三个双引号'''被注释的内容'''
msg = "I love china" #在这里是给这一行代码加注释 print (msg) print (msg) #print (msg) '''print (msg) print (msg)'''
用户的基本的输入输出、整数字符串的转换、字符串的拼接
death_age = 80 name = input("please input your name:") age = input("please input your age:") #接收的是字符串,即使输入的是数字,也被认为是字符串 #int整数,把整数转换为字符串str(要转换的内容) #str字符串,把字符串转换为整数int(要转换的内容) print("your name",name) print("you can still live",death_age-int(age),"years") #转换之后相减 print("you can still live"+str(death_age-int(age))+"years") #转换之后字符串拼接
以上是关于python的注释及简单的用户输入输出的主要内容,如果未能解决你的问题,请参考以下文章