-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday_1.py
More file actions
25 lines (20 loc) · 851 Bytes
/
day_1.py
File metadata and controls
25 lines (20 loc) · 851 Bytes
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
#DZIEŃ PIERWSZY____________________________________________________________________________________________________-
# print("Hello world!")
# print("Day 1 - Python Print Function\nThe function is declared like this:\nprint('What to print')")
# print("Hello " + "Magdalena")
# print("Day 1 - String Manipulation")
# print("String Concatenation is done with the '+' sign.")
# print('e.g. print("Hello " + "world")')
# print("New lines can be created with a backslash and n.")
# print(len(input("What is your name? ")))
# a = input("a: ")
# b = input("b: ")
# c = b
# b = a
# a = c
# print("a: " + a)
# print("b: " + b)
# print("Welcome to my Band Name generator")
# city = input("What is name of the city you grew up in?\n")
# pet = input("What's your pet name?\n")
# print("Your band name could be " + city + " " + pet)