标签:tps nbsp 换行符 sage developer 数字 art 技术 tencent
1、变量名只能包含数字、字母、下划线,且不能用数字打头。
eg: message_1是对的但1_message就是错误的
2、变量名不能包含空格。
3、在变量命名时,不能使用关键字。
33个关键字详细介绍见:https://cloud.tencent.com/developer/article/1409147
整型:1、2、3、4、5....
浮点型:1.2333,3.1415926..,2.000.......
整数和浮点型可进行常规的四则运算和求幂运算(**)3**2=9
空类型:None (None 类型不等于0)
字符串:‘Python is my favorite lanuage.‘,"This is a string.",‘This is also a string.‘.....
#练习
message = "Hello Python World!" #message为字符串变量用于存放字符串,变量就相当于一个容器
print(message)
message = ‘Hello flash Python World!‘ #更新message变量的值
print(message)
#圆的周长和面积
print("请输入与圆的半径:")
r = int(input())
pi = 3.14
c = 2*pi*r
s = pi*r*r
print("圆的周长为:",c)
print("圆的面积为:",s)
#字符串的大小写转换
name = "ada lovelace"
print(name.title()) #title()方法以首字母大写的方式显示每个单词
print(name.upper()) #upper()方法将字符串全部改为大写字母
print(name.lower()) #lower()方法将字符串全部改为小写字母
#字符串的合并( 用"+"将字符串合并 )
first_name = "ada"
last_name = "lovelace"
full_name = first_name + " " + last_name
print(full_name)
print("Hello,"+full_name.title()+"!")
message = "Hello,"+full_name.title()+"!"
print(message)
#制表符(\t)和换行符(\n)
print("Python")
print("\tPython")
print("Languages:\nPython\tC语言\nJavaScript\tC#\n")
标签:tps nbsp 换行符 sage developer 数字 art 技术 tencent
原文地址:https://www.cnblogs.com/sinlearn/p/10932310.html