FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
python-complete-notes/01_Python_Basics at main · shripatil70/python-complete-notes · GitHub
shripatil70
/
python-complete-notes
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-complete-notes
/
01_Python_Basics
/
Copy path
Directory actions
More options
More options
Directory actions
More options
More options
Latest commit
History
History
History
Breadcrumbs
python-complete-notes
/
01_Python_Basics
/
Copy path
Folders and files
Name
Name
Last commit message
Last commit date
parent directory
..
arithmetic_operators.py
arithmetic_operators.py
data_types.py
data_types.py
data_types.py# Python Data Types # Integer a = 10 print(type(a)) # Float b = 10.5 print(type(b)) # String c = "Hello Python" print(type(c)) # Boolean d = True print(type(d)) # List my_list = [1,2,3,4] print(type(my_list)) # Tuple my_tuple = (1,2,3) print(type(my_tuple)) # Set my_set = {1,2,3} print(type(my_set)) # Dictionary my_dict = {"name":"John","age":25} print(type(my_dict))
data_types.py# Python Data Types # Integer a = 10 print(type(a)) # Float b = 10.5 print(type(b)) # String c = "Hello Python" print(type(c)) # Boolean d = True print(type(d)) # List my_list = [1,2,3,4] print(type(my_list)) # Tuple my_tuple = (1,2,3) print(type(my_tuple)) # Set my_set = {1,2,3} print(type(my_set)) # Dictionary my_dict = {"name":"John","age":25} print(type(my_dict))
variables.py
variables.py
Back
|
FazBrowse Home
|
New Git URL