-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkspace.py
82 lines (79 loc) · 1.74 KB
/
Workspace.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# num_char = len(input("what's your name"))
# name_char = str(num_char)
# print("your name haves "+ name_char + " character")
#
# teo_digit_number = input("Type a two digit number: ")
# two_digit_number = str(teo_digit_number)
# num = len(two_digit_number)
# sum = int(two_digit_number[0])
# sum2 = int(two_digit_number[1])
# total = sum + sum2
# print(total)
import math
#
# question = input("Ask magic 8 ball a question")
# answer = random.randint(1, 8)
# if answer == 1:
# print("It is certain")
# elif answer == 2:
# print("Outlook good")
# elif answer == 3:
# print("You may rely on it")
# elif answer == 4:
# print("Ask again later")
# elif answer == 5:
# print("Concentrate and ask again")
# elif answer == 6:
# print("Reply hazy, try again")
# elif answer == 7:
# print("My reply is no")
# elif answer == 8:
# print("My sources say no")
# else:
# print("That's not a question")
# print("The end")
num = 10
# if num > 11:
# print("Positive number")
# else:
# print("Negative number")
# x = 1.12345678900999
# y = round(x, 5)
# a = type(x)
# q = max(x, y, 3)
# print(x)
# print(y)
# print(a)
# print(q)
# while num > 0:
# num = num + 1
# print(num)
# first_name = "tot","tot1";
# print(first_name)
# x = 10
# if x == 0:
# print("x is zero")
# else:
# print("x is ",x)
# print("All done")
# x= int(input('enter a number'))
# if x == 10:
# print("incredible ")
# else:
# print("okay")
# x = -555
# y = abs(x)
# print(x)
# print(y)
# x = int(input("number"))
# w = math.factorial(x)
# print(w)
user_name = "tobi"
price = 3
unit = 2
# print(f'Hello {user_name}')
print(f'total {3/2:,.2f}')
# print(user_name.replace("lol"))
print(len(user_name))
print("t" in user_name)
print(user_name.capitalize(user_name))