Python学习(是我的课堂上学到的东西)不包含课外
2023-08-29课堂
简单入门
下面是python数据类型的形式,应该很好理解,python作为解释性语言,不用注意结尾分号,但是要严格大小写,还有关键字因素
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| """ 这是python数据类型的形式 """
age = 10
name = 'Jack'
salary = 4500.3
isMarry = True
print(name)
print("姓名:",name,"年龄:",age,"小数:",salary,"婚否:",isMarry)
print(type(name),type(age),type(salary),type(isMarry)) print(type("Jack"),type(20),type(45000.4),type(True))
for i in range(1,10): for j in range(1,i+1): print('{}x{}={}\t'.format(j,i,i*j),end='') print()
for a in range(1,100): print(a,'\t') if a%10==0: print("\n")
print("hello python!")
print("hello"+"python")
print('he said "let us go"') print("he said'let us go'")
print("he said \"let\'s go!\"")
print("he said\n\"let's go!\"")
print(''' 床前明月光,疑是地上霜。 举头望明月,低头思故乡。 ''')
print(""" 床前明月光,疑是地上霜。 举头望明月,低头思故乡。 """)
|