Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Python Notes-data types

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Http://www.runoob.com/python/python-tutorial.html rookie tutorial

1. Number, which can be defined directly, a = 18

two。 String, a = 'helloworld'

Operations that can be performed in a sequence include indexing, slicing, adding, multiplying, and checking members.

3. List, list = [1, 2, 2, 3, 4, 4, parentheses

4. Tuple, the element of tuple cannot be modified, tup = ('aaa',1,2,3,'ddd'), parentheses indicate

5. Dictionary, key-value pair, d = {key1: value1, key2: value2}, the key is unique

Curly braces

String manipulation:

Var1 = 'Hello Worldwide'

Var2 = "Python Runoob"

Print "var1 [0]:", var1 [0] # take values according to subscript

Print "var2 [1:5]:", var2 [1:5] # intercepts several values

Output result:

Var1 [0]: H

Var2 [1:5]: ytho

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report