Title of your talk

Hippolyte Quéré (Hippie)

Cybersecurity student at ESAIP

CTF Player @Rhackgondins

https://hippie.cat

@hiippiiie

1.One
2.Two
3.Three

1. ONE

One

2. TWO

Two

2. TWO

Two

3. Three

Three

# Import re module
import re

# Take any string data
string = input("Enter a string value: ")
# Define the searching pattern
pattern = '^[A-Z]'

# match the pattern with input value
found = re.match(pattern, string)

# Print message based on the return value
if found:
  print("The input value is started with the capital letter")
else:
  print("You have to type string start with the capital letter")

Thanks :)

Template ESAIP Cyber

By Rhackgondins

Template ESAIP Cyber

  • 79