-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample2.py
38 lines (26 loc) · 886 Bytes
/
example2.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
37
38
#print("Smart is an awesome programmer")
#print("Smart is an awesome programmer")
#print("Smart is an awesome programmer")
#print("Smart is an awesome programmer")
# def print_smart(text):
# print(text)
# print(text)
# print(text)
# print_smart("Smart is 100% awesome")
# def school_age_calculator(age,name):
# if age < 5:
# print("Enjoy the time!", name, "is only", age)
# elif age == 5:
# print("Enjoy kindergaten,", name)
# else:
# print("They grow up so fast!")
# school_age_calculator(10,"Ziri")
# def add_ten_to_age(age):
# new_age = age + 10
# return new_age
# How_Old_Will_I_Be = add_ten_to_age(3)
# print(How_Old_Will_I_Be)
#print(type("this is a string"))
#print(dir("this is a string"))
#print(type(list("this is a string")))
print(dir(list("this is a string")))