Hakan Bilgiç

Hakan Bilgiç (born 30 October 1992) is a Turkish professional footballer who plays as a defender for Bandırmaspor.

Hakan Bilgiç
Personal information
Full name Hakan Bilgiç
Date of birth (1992-10-30) October 30, 1992
Place of birth Midyat, Turkey
Height 1.84 m (6 ft 0 in)
Playing position(s) Defender
Club information
Current team
Bandırmaspor
Senior career*
Years Team Apps (Gls)
2011–2014 Brussels 40 (2)
2014–2017 Elazığspor 73 (6)
2017–2018 Sivasspor 13 (0)
2018–2019 Adana Demirspor 33 (0)
2020– Bandırmaspor 7 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 15 March 2020

Professional career

Hakan was born in Turkey and moved to Belgium at the age of 6. He begun his footballing career as a youth with the Belgian club Brussels FC.[1] After a couple successful seasons with Elazığspor in the TFF First League, Hakan moved to Sivasspor.[2] Hakan made his professional debut for Sivasspor in a 1–0 Süper Lig loss to Akhisar Belediyespor on 12 August 2017.[3]

gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.