-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_me.py
36 lines (33 loc) · 869 Bytes
/
print_me.py
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
'''
'''
# your_name = input("Please type your name: ")
# print(f"Hi,{your_name}")
#
# str_list = "Welcome to Lesson#2" #str(year)
# year = 2022
# pi = 3.14
# c_num = 3j+10
# my_list = ["A", "B", "C", "D"]
# my_tuple = ("A", "B", "C", "D")
# my_dict = {"A":"a", "B":"b", "C":"c", "D":"d"}
# my_set = {'A', 'B', 'C', 'D'}
#
# print("The type is : ",type(str_list))
# print("The type is : ",type(year))
# print("The type is : ",type(pi))
# print("The type is : ",type(c_num))
# print("The type is : ",type(my_list))
# print("The type is : ",type(my_tuple))
# print("The type is : ",type(my_dict))
# print("The type is : ",type(my_set))
# str_list = "Welcome to Lesson#2"
# igor = 'Igor'
# new_var = (1, 6, 6, 6, 3, 45, 4, 4, igor, 5,"Igor", "Ivan")
#
# print(str(new_var))
# print("Helle\bo World")
import constants
print(constants.PI)
print(constants.GRAVITY)
"""
"""